We should be returning 0, not 1, when logservd finishes without errors

1 is for failure, 0 is for no failure, and this does not look like a failure.
This commit is contained in:
Rose
2023-06-28 17:26:38 -04:00
parent a0b074cc9c
commit 2c13d7130c

View File

@@ -2017,5 +2017,5 @@ main(int argc, char *argv[])
unlink(logsrvd_conf_pid_file());
logsrvd_conf_cleanup();
debug_return_int(1);
debug_return_int(0);
}