From dc9bfa5939f23fdf200c179d0738ad27131ee308 Mon Sep 17 00:00:00 2001 From: Gregg Lewis Smith Date: Thu, 20 Aug 2015 23:36:25 +0000 Subject: [PATCH] APRify ECONNRESET git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1696881 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http2/h2_conn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/http2/h2_conn.c b/modules/http2/h2_conn.c index df1de9e7d3..5430943860 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); -- 2.40.0