From 3f5f57845b9e13ba4e69f26cffcbf78d912ad45f Mon Sep 17 00:00:00 2001 From: Valentine Krasnobaeva Date: Tue, 9 Jul 2024 15:09:40 +0200 Subject: [PATCH] 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(). --- src/haproxy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */ -- 2.47.3