From: Bradley Nicholes Date: Thu, 26 Jan 2006 18:36:18 +0000 (+0000) Subject: Use the correct logging call to report connection errors X-Git-Tag: 2.0.56~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=278a43b8197186ae3cd9b4a8ae6da687f0e3867d;p=thirdparty%2Fapache%2Fhttpd.git Use the correct logging call to report connection errors Reviewed by: bnicholes, wrowe, pquerna git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@372581 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/core.c b/server/core.c index 4fe3ce44818..be59bcdfc5d 100644 --- a/server/core.c +++ b/server/core.c @@ -4525,7 +4525,7 @@ static int core_pre_connection(conn_rec *c, void *csd) rv = apr_socket_timeout_set(csd, c->base_server->timeout); if (rv != APR_SUCCESS) { /* expected cause is that the client disconnected already */ - ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, c, + ap_log_cerror(APLOG_MARK, APLOG_DEBUG, rv, c, "apr_socket_timeout_set"); }