Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 7359 invoked by uid 500); 4 Apr 2002 23:35:12 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 7348 invoked by uid 500); 4 Apr 2002 23:35:12 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 4 Apr 2002 23:35:11 -0000 Message-ID: <20020404233511.79181.qmail@icarus.apache.org> From: wrowe@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/server/mpm/winnt mpm_winnt.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N wrowe 02/04/04 15:35:11 Modified: server/mpm/winnt mpm_winnt.c Log: One emit is an error, not a notice. Neither have 'error codes'... Revision Changes Path 1.258 +2 -2 httpd-2.0/server/mpm/winnt/mpm_winnt.c Index: mpm_winnt.c =================================================================== RCS file: /home/cvs/httpd-2.0/server/mpm/winnt/mpm_winnt.c,v retrieving revision 1.257 retrieving revision 1.258 diff -u -r1.257 -r1.258 --- mpm_winnt.c 4 Apr 2002 23:33:44 -0000 1.257 +++ mpm_winnt.c 4 Apr 2002 23:35:11 -0000 1.258 @@ -1800,7 +1800,7 @@ * then signal the child process to exit. */ restart_pending = 1; - ap_log_error(APLOG_MARK, APLOG_NOTICE, APR_SUCCESS, s, + ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, 0, s, "Parent: Received restart signal -- Restarting the server."); if (ResetEvent(restart_event) == 0) { ap_log_error(APLOG_MARK, APLOG_ERR, apr_get_os_error(), s, @@ -1828,7 +1828,7 @@ if ( exitcode == APEXIT_CHILDFATAL || exitcode == APEXIT_CHILDINIT || exitcode == APEXIT_INIT) { - ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, APR_SUCCESS, ap_server_conf, + ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, ap_server_conf, "Parent: child process exited with status %u -- Aborting.", exitcode); } else {