Commit 0df64416 authored by Bradley Nicholes's avatar Bradley Nicholes
Browse files

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
parent 1ebb1733
Loading
Loading
Loading
Loading
+1 −1
Changes for server/core.c: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -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");
    }