From: Brian Havard Date: Sun, 24 Oct 1999 07:43:45 +0000 (+0000) Subject: Fix an ap_log_error() call. X-Git-Tag: 1.3.10~229 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b14910b2d0c73d219b6a9b1edcb754f66c3a0d5;p=apache Fix an ap_log_error() call. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84030 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/prefork/prefork.c b/server/mpm/prefork/prefork.c index 5fb67599a2..2660806e7f 100644 --- a/server/mpm/prefork/prefork.c +++ b/server/mpm/prefork/prefork.c @@ -1896,7 +1896,7 @@ static void sock_disable_nagle(int s) if (setsockopt(s, IPPROTO_TCP, TCP_NODELAY, (char *) &just_say_no, sizeof(int)) < 0) { - ap_log_error(APLOG_MARK, APLOG_WARNING, server_conf, + ap_log_error(APLOG_MARK, APLOG_WARNING, errno, server_conf, "setsockopt: (TCP_NODELAY)"); } }