2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 09:57:41 +00:00

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);
}