From 555372fbfcacab6d553fef97331e2ce59532e14c Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Fri, 12 Mar 2010 19:55:35 +0000 Subject: [PATCH] all signs indicate that status value is always -1 on error git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@922405 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/event/event.c | 2 +- server/mpm/prefork/prefork.c | 2 +- server/mpm/worker/worker.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/server/mpm/event/event.c b/server/mpm/event/event.c index a5db0c4ad0..ea775d87ec 100644 --- a/server/mpm/event/event.c +++ b/server/mpm/event/event.c @@ -1863,7 +1863,7 @@ static int make_child(server_rec * s, int slot) 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); diff --git a/server/mpm/prefork/prefork.c b/server/mpm/prefork/prefork.c index 5e1a677b45..ece71234e0 100644 --- a/server/mpm/prefork/prefork.c +++ b/server/mpm/prefork/prefork.c @@ -744,7 +744,7 @@ static int make_child(server_rec *s, int slot) 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); diff --git a/server/mpm/worker/worker.c b/server/mpm/worker/worker.c index 494fc03efc..c35ca94fa8 100644 --- a/server/mpm/worker/worker.c +++ b/server/mpm/worker/worker.c @@ -1362,7 +1362,7 @@ static int make_child(server_rec *s, int slot) 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); -- 2.40.0