Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 72324 invoked by uid 500); 14 Jun 2001 14:26:56 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 72302 invoked by uid 500); 14 Jun 2001 14:26:55 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 14 Jun 2001 14:26:55 -0000 Message-ID: <20010614142655.72296.qmail@apache.org> From: trawick@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/server/mpm/prefork prefork.c trawick 01/06/14 07:26:55 Modified: server/mpm/prefork prefork.c Log: fix a bad call to ap_log_error (missing the errno/apr_status_t parameter) Revision Changes Path 1.183 +2 -2 httpd-2.0/server/mpm/prefork/prefork.c Index: prefork.c =================================================================== RCS file: /home/cvs/httpd-2.0/server/mpm/prefork/prefork.c,v retrieving revision 1.182 retrieving revision 1.183 diff -u -r1.182 -r1.183 --- prefork.c 2001/06/14 14:07:07 1.182 +++ prefork.c 2001/06/14 14:26:54 1.183 @@ -882,8 +882,8 @@ 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);