diff options
author | Thomas Adam <thomas@xteddy.org> | 2015-11-25 16:51:17 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2015-11-25 16:51:17 +0000 |
commit | a1bc339340abebfd9938a8e98f7cb26186c7e7c6 (patch) | |
tree | 6921ece8bbdb40ffc6b2618242d4dad374ef7f94 /proc.c | |
parent | 260de2cb5e384a0cf193b5f9f996fa8fb2c5aaf8 (diff) | |
download | rtmux-a1bc339340abebfd9938a8e98f7cb26186c7e7c6.tar.gz rtmux-a1bc339340abebfd9938a8e98f7cb26186c7e7c6.tar.bz2 rtmux-a1bc339340abebfd9938a8e98f7cb26186c7e7c6.zip |
log_open() isn't conditional on proctitle
Diffstat (limited to 'proc.c')
-rw-r--r-- | proc.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -188,8 +188,9 @@ proc_start(const char *name, struct event_base *base, int forkflag, fatalx("event_reinit failed"); } -#ifdef HAVE_SETPROCTITLE log_open(name); + +#ifdef HAVE_SETPROCTITLE setproctitle("%s (%s)", name, socket_path); #endif |