From: Jeff Trawick Date: Thu, 5 Jun 2003 16:54:48 +0000 (+0000) Subject: Fix some broken log messages in WinNT MPM. X-Git-Tag: pre_ajp_proxy~1564 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b9a9649654a3b48f0c257e2680ef321470511b2c;p=thirdparty%2Fapache%2Fhttpd.git Fix some broken log messages in WinNT MPM. Submitted by: Juan Rivera Reviewed by: Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100175 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 7d98e0ed209..262f5299918 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,9 @@ Changes with Apache 2.1.0-dev [Remove entries to the current 2.0 section below, when backported] + *) Fix some broken log messages in WinNT MPM. + [Juan Rivera ] + *) Add support for "streamy" PROPFIND responses. [Ben Collins-Sussman ] diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index 95cabeed02a..841fa8bc75a 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -899,7 +899,7 @@ void child_main(apr_pool_t *pconf) ap_log_error(APLOG_MARK, APLOG_CRIT, apr_get_os_error(), ap_server_conf, "Child %d: _beginthreadex failed. Unable to create all worker threads. " "Created %d of the %d threads requested with the ThreadsPerChild configuration directive.", - threads_created, ap_threads_per_child); + my_pid, threads_created, ap_threads_per_child); ap_signal_parent(SIGNAL_PARENT_SHUTDOWN); goto shutdown; } @@ -966,7 +966,7 @@ void child_main(apr_pool_t *pconf) if (rv == WAIT_FAILED) { /* Something serious is wrong */ ap_log_error(APLOG_MARK, APLOG_CRIT, apr_get_os_error(), ap_server_conf, - "Child %d: WAIT_FAILED -- shutting down server"); + "Child %d: WAIT_FAILED -- shutting down server", my_pid); break; } else if (cld == 0) {