You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bn...@apache.org on 2006/01/26 19:36:22 UTC

svn commit: r372581 - /httpd/httpd/branches/2.0.x/server/core.c

Author: bnicholes
Date: Thu Jan 26 10:36:18 2006
New Revision: 372581

URL: http://svn.apache.org/viewcvs?rev=372581&view=rev
Log:
Use the correct logging call to report connection errors

Reviewed by: bnicholes, wrowe, pquerna

Modified:
    httpd/httpd/branches/2.0.x/server/core.c

Modified: httpd/httpd/branches/2.0.x/server/core.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.0.x/server/core.c?rev=372581&r1=372580&r2=372581&view=diff
==============================================================================
--- httpd/httpd/branches/2.0.x/server/core.c (original)
+++ httpd/httpd/branches/2.0.x/server/core.c Thu Jan 26 10:36:18 2006
@@ -4525,7 +4525,7 @@
     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");
     }