From 9dffb2839c9a49a130996ca28811c29748619e5d Mon Sep 17 00:00:00 2001 From: Stephan Bosch Date: Mon, 6 Apr 2020 23:34:10 +0200 Subject: [PATCH] lib-http: test-http-client-errors - Rename test_servers_kill_all() to test_servers_kill_forced(). --- src/lib-http/test-http-client-errors.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib-http/test-http-client-errors.c b/src/lib-http/test-http-client-errors.c index 604c45180f..7f8d184a2c 100644 --- a/src/lib-http/test-http-client-errors.c +++ b/src/lib-http/test-http-client-errors.c @@ -3381,7 +3381,7 @@ static int test_open_server_fd(in_port_t *bind_port) return fd; } -static void test_servers_kill_all(void) +static void test_servers_kill_forced(void) { unsigned int i; @@ -3509,7 +3509,7 @@ test_run_client_server(const struct http_client_settings *client_set, io_loop_destroy(&ioloop); i_unset_failure_prefix(); - test_servers_kill_all(); + test_servers_kill_forced(); i_free(server_pids); i_free(bind_ports); @@ -3531,7 +3531,7 @@ static void test_signal_handler(const siginfo_t *si, void *context ATTR_UNUSED) terminating = 1; /* make sure we don't leave any pesky children alive */ - test_servers_kill_all(); + test_servers_kill_forced(); (void)signal(signo, SIG_DFL); raise(signo); @@ -3539,7 +3539,7 @@ static void test_signal_handler(const siginfo_t *si, void *context ATTR_UNUSED) static void test_atexit(void) { - test_servers_kill_all(); + test_servers_kill_forced(); } static void main_init(void) -- 2.47.3