You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2010/03/12 20:55:35 UTC

svn commit: r922405 - in /httpd/httpd/trunk/server/mpm: event/event.c prefork/prefork.c worker/worker.c

Author: covener
Date: Fri Mar 12 19:55:35 2010
New Revision: 922405

URL: http://svn.apache.org/viewvc?rev=922405&view=rev
Log:
all signs indicate that status value is always -1 on error

Modified:
    httpd/httpd/trunk/server/mpm/event/event.c
    httpd/httpd/trunk/server/mpm/prefork/prefork.c
    httpd/httpd/trunk/server/mpm/worker/worker.c

Modified: httpd/httpd/trunk/server/mpm/event/event.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/event/event.c?rev=922405&r1=922404&r2=922405&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/event/event.c (original)
+++ httpd/httpd/trunk/server/mpm/event/event.c Fri Mar 12 19:55:35 2010
@@ -1863,7 +1863,7 @@ static int make_child(server_rec * s, in
         if (status != OK)
             ap_log_error(APLOG_MARK, APLOG_DEBUG, errno,
                          ap_server_conf,
-                         "processor unbind failed %d", status);
+                         "processor unbind failed");
 #endif
         RAISE_SIGSTOP(MAKE_CHILD);
 

Modified: httpd/httpd/trunk/server/mpm/prefork/prefork.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/prefork/prefork.c?rev=922405&r1=922404&r2=922405&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/prefork/prefork.c (original)
+++ httpd/httpd/trunk/server/mpm/prefork/prefork.c Fri Mar 12 19:55:35 2010
@@ -744,7 +744,7 @@ static int make_child(server_rec *s, int
                                    PROCESSOR_CLASS_ANY);
         if (status != OK) {
             ap_log_error(APLOG_MARK, APLOG_DEBUG, errno,
-                         ap_server_conf, "processor unbind failed %d", status);
+                         ap_server_conf, "processor unbind failed");
         }
 #endif
         RAISE_SIGSTOP(MAKE_CHILD);

Modified: httpd/httpd/trunk/server/mpm/worker/worker.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/worker/worker.c?rev=922405&r1=922404&r2=922405&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/worker/worker.c (original)
+++ httpd/httpd/trunk/server/mpm/worker/worker.c Fri Mar 12 19:55:35 2010
@@ -1362,7 +1362,7 @@ static int make_child(server_rec *s, int
         if (status != OK)
             ap_log_error(APLOG_MARK, APLOG_DEBUG, errno,
                          ap_server_conf,
-                         "processor unbind failed %d", status);
+                         "processor unbind failed");
 #endif
         RAISE_SIGSTOP(MAKE_CHILD);