]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
fix a bad call to ap_log_error (missing the errno/apr_status_t parameter)
authorJeff Trawick <trawick@apache.org>
Thu, 14 Jun 2001 14:26:54 +0000 (14:26 +0000)
committerJeff Trawick <trawick@apache.org>
Thu, 14 Jun 2001 14:26:54 +0000 (14:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89367 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/prefork/prefork.c

index e2857b1d5315e967f25c97f02150343aba574025..5df0b4a57bb4c746b788119eb05786f14dce4396 100644 (file)
@@ -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);