From: Valentine Krasnobaeva Date: Tue, 9 Jul 2024 13:09:40 +0000 (+0200) Subject: MINOR: startup: rename exit_on_waitmode_failure to exit_on_failure X-Git-Tag: v3.1-dev10~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3f5f57845b9e13ba4e69f26cffcbf78d912ad45f;p=thirdparty%2Fhaproxy.git MINOR: startup: rename exit_on_waitmode_failure to exit_on_failure As we no longer support MODE_MWORKER_WAIT for master (it became redundant with MODE_MWORKER after moving master-worker fork in init()), let's rename exit_on_waitmode_failure() callback in just exit_on_failure(). --- diff --git a/src/haproxy.c b/src/haproxy.c index f57dffb297..7463626413 100644 --- a/src/haproxy.c +++ b/src/haproxy.c @@ -936,7 +936,7 @@ void reexec_on_failure() /* * Exit with an error message upon a wait-mode failure. */ -void exit_on_waitmode_failure() +void exit_on_failure() { if (!atexit_flag) return; @@ -2177,7 +2177,7 @@ static void init(int argc, char **argv) global.mode |= MODE_MWORKER_WAIT; master = 1; atexit_flag = 1; - atexit(exit_on_waitmode_failure); + atexit(exit_on_failure); ha_notice("Initializing new worker (%d)\n", worker_pid); /* find the right mworker_proc */