From eec68b03fbcba2ca25af63c0bf5d9f7fa154f56d Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sat, 14 Aug 2004 10:57:13 +0000 Subject: [PATCH] WinNT MPM: Fix a broken log message at termination. PR: 28063 Submitted by: Eider Oliveira Reviewed by: Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104652 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 3 +++ server/mpm/winnt/child.c | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index e60d198c10..2dc07d644a 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] + *) WinNT MPM: Fix a broken log message at termination. PR 28063. + [Eider Oliveira ] + *) Improve error handling for corrupted pid files. [Jeff Trawick] *) mod_proxy.c and proxy_util.c: Enable compiling on 2.0-HEAD diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index 716703d340..ea9976cf79 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -1126,7 +1126,8 @@ void child_main(apr_pool_t *pconf) /* Kill remaining threads off the hard way */ if (threads_created) { ap_log_error(APLOG_MARK,APLOG_NOTICE, APR_SUCCESS, ap_server_conf, - "Child %d: Terminating %d threads that failed to exit.", my_pid); + "Child %d: Terminating %d threads that failed to exit.", + my_pid, threads_created); } for (i = 0; i < threads_created; i++) { int *score_idx; -- 2.50.1