From: Jeff Trawick Date: Thu, 14 Jun 2001 14:26:54 +0000 (+0000) Subject: fix a bad call to ap_log_error (missing the errno/apr_status_t parameter) X-Git-Tag: 2.0.19~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d68538c726de4c099eb236953f4842b7dde47fdd;p=thirdparty%2Fapache%2Fhttpd.git fix a bad call to ap_log_error (missing the errno/apr_status_t parameter) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89367 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/prefork/prefork.c b/server/mpm/prefork/prefork.c index e2857b1d531..5df0b4a57bb 100644 --- a/server/mpm/prefork/prefork.c +++ b/server/mpm/prefork/prefork.c @@ -882,8 +882,8 @@ static int make_child(server_rec *s, int slot) int status = bindprocessor(BINDPROCESS, (int)getpid(), PROCESSOR_CLASS_ANY); if (status != OK) { - ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING, ap_server_conf, - "processor unbind failed %d", status); + ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING, errno, + ap_server_conf, "processor unbind failed %d", status); } #endif RAISE_SIGSTOP(MAKE_CHILD);