From: Bill Stoddard Date: Sat, 28 Feb 2004 19:02:24 +0000 (+0000) Subject: Win32: Shutdown the server on critical child failures that will prevent the server... X-Git-Tag: pre_ajp_proxy~612 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7897ad5c5be72f959966cad75b3c74a58972f874;p=apache Win32: Shutdown the server on critical child failures that will prevent the server from operating git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102804 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index c4a8e6ee5b..578c88fa7d 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -944,8 +944,9 @@ static int master_main(server_rec *s, HANDLE shutdown_event, HANDLE restart_even if ( exitcode == APEXIT_CHILDFATAL || exitcode == APEXIT_CHILDINIT || exitcode == APEXIT_INIT) { - ap_log_error(APLOG_MARK, APLOG_ERR, 0, ap_server_conf, + ap_log_error(APLOG_MARK, APLOG_CRIT, 0, ap_server_conf, "Parent: child process exited with status %u -- Aborting.", exitcode); + shutdown_pending = 1; } else { int i;