From 2c13d7130c656d720f7fb0041e82fca7f0908d4c Mon Sep 17 00:00:00 2001 From: Rose <83477269+AtariDreams@users.noreply.github.com> Date: Wed, 28 Jun 2023 17:26:38 -0400 Subject: [PATCH] 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. --- logsrvd/logsrvd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logsrvd/logsrvd.c b/logsrvd/logsrvd.c index 25c94fc3d..ebc480406 100644 --- a/logsrvd/logsrvd.c +++ b/logsrvd/logsrvd.c @@ -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); }