From: Gregg Lewis Smith Date: Thu, 20 Aug 2015 23:36:25 +0000 (+0000) Subject: APRify ECONNRESET X-Git-Tag: 2.5.0-alpha~2939 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc9bfa5939f23fdf200c179d0738ad27131ee308;p=thirdparty%2Fapache%2Fhttpd.git APRify ECONNRESET git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1696881 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/h2_conn.c b/modules/http2/h2_conn.c index df1de9e7d33..5430943860a 100644 --- a/modules/http2/h2_conn.c +++ b/modules/http2/h2_conn.c @@ -287,7 +287,7 @@ apr_status_t h2_session_process(h2_session *session) case APR_EBADF: case APR_EOF: case APR_ECONNABORTED: - case ECONNRESET: + case APR_ECONNRESET: ap_log_cerror( APLOG_MARK, APLOG_DEBUG, status, session->c, "h2_session(%ld): reading", session->id);