]> granicus.if.org Git - apache/commitdiff
WinNT MPM: Fix a broken log message at termination.
authorJeff Trawick <trawick@apache.org>
Sat, 14 Aug 2004 10:57:13 +0000 (10:57 +0000)
committerJeff Trawick <trawick@apache.org>
Sat, 14 Aug 2004 10:57:13 +0000 (10:57 +0000)
PR: 28063
Submitted by: Eider Oliveira <eider bol.com.br>
Reviewed by: Jeff Trawick

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104652 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
server/mpm/winnt/child.c

diff --git a/CHANGES b/CHANGES
index e60d198c10779048aaa868d7a84543f1f3ff1a91..2dc07d644a326161a8765e22fad8f36945f4d906 100644 (file)
--- 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 <eider bol.com.br>]
+
   *) Improve error handling for corrupted pid files.  [Jeff Trawick]
 
   *) mod_proxy.c and proxy_util.c: Enable compiling on 2.0-HEAD 
index 716703d3401754778284769c98618fa0cc376c59..ea9976cf79909a9070670202ed45dc006c703857 100644 (file)
@@ -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;