diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-10-27 13:45:49 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-10-31 12:45:49 +0100 |
commit | d3f99f21e6ab7c13286af5f37dafbe9cd76f2fad (patch) | |
tree | 918d58087336b0096d2cd783f00cd6c3f4796765 /utils.c | |
parent | c63cbec26d9ab3aa3004c9969ec67315fecd28b1 (diff) |
Create pidfile iff daemon mode enabled.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.c')
-rw-r--r-- | utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -197,7 +197,7 @@ int change_user_group(char const * const user, return -errno; } } - if (pidfile != NULL) + if (daemonize != 0 && pidfile != NULL) { errno = 0; if (chown(pidfile, pwd->pw_uid, gid) != 0) |