This is an automated email from the git hooks/post-receive script.
git pushed a commit to reference refs/pull/34/head
in repository terminology.
View the commit online.
commit 98c82788ef9fdc3ff4f9a305a932b8b05b7fdea5
Author: [email protected] <[email protected]>
AuthorDate: Sun Mar 29 22:14:52 2026 -0600
fix: start IPC server in single-instance mode for tytab
The IPC server was only started in multi_instance mode. In single-
instance mode (the default), ipc_serve() was never called, so tytab
could not connect for nonce requests. Always start the IPC server
so tytab works regardless of multi_instance setting.
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
---
src/bin/main.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/bin/main.c b/src/bin/main.c
index 5384e26c..cb7b4ca5 100644
--- a/src/bin/main.c
+++ b/src/bin/main.c
@@ -1064,6 +1064,8 @@ elm_main(int argc, char **argv)
}
else
{
+ ipc_instance_new_func_set(main_ipc_new);
+ ipc_serve();
_start(&instance, need_scale_wizard);
}
elm_run();
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.