diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-12-07 09:54:48 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-12-07 10:00:25 +0100 |
commit | 142a435bf64540c63fef67c4a44358eb50922868 (patch) | |
tree | af905a1ba2ab673bfcb812c7f3de9874ac23dc9f /utils.c | |
parent | f5c5bc88a7154db3ef6c1f50f59ffe62e6d2f447 (diff) |
Add InfluxDB push daemon.
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
@@ -208,7 +208,7 @@ int daemonize_shutdown(char const * const pidfile) { if (daemonize != 0) { - if (unlink(pidfile) != 0 && errno != ENOENT) + if (pidfile != NULL && unlink(pidfile) != 0 && errno != ENOENT) { logger(1, "Could not unlink pidfile %s: %s", pidfile, strerror(errno)); return 1; |