Commit 549c29ac authored by Jeff Trawick's avatar Jeff Trawick
Browse files

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
parent 5741b3ef
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);