Do not attempt to connect to the socket as a client if systemd is active, from

Julien Moutinho in GitHub issue 3345.
This commit is contained in:
Nicholas Marriott
2022-10-18 15:58:06 +01:00
parent 934f357149
commit 5ce34add77
3 changed files with 13 additions and 0 deletions

View File

@ -25,6 +25,12 @@
#include "tmux.h"
int
systemd_activated(void)
{
return (sd_listen_fds(0) >= 1);
}
int
systemd_create_socket(int flags, char **cause)
{