From 278a43b8197186ae3cd9b4a8ae6da687f0e3867d Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Thu, 26 Jan 2006 18:36:18 +0000 Subject: [PATCH] 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 --- server/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } -- 2.47.2