From dabb786beb5c32e0ff834e2e5c1cbef68365dd38 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Wed, 24 Oct 2007 21:25:23 +0000 Subject: [PATCH] Two sane reasons to wrap up, timeup, or eof. Quiet down both results from the error log. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@588036 13f79535-47bb-0310-9956-ffa450edef68 --- modules/echo/mod_echo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/echo/mod_echo.c b/modules/echo/mod_echo.c index 4fb9e1dc69..6c21ac6a08 100644 --- a/modules/echo/mod_echo.c +++ b/modules/echo/mod_echo.c @@ -152,7 +152,7 @@ static int process_echo_connection(conn_rec *c) if (((rv = ap_get_brigade(c->input_filters, bb, AP_MODE_GETLINE, APR_BLOCK_READ, 0)) != APR_SUCCESS)) { apr_brigade_destroy(bb); - if (!APR_STATUS_IS_EOF(rv)) + if (!APR_STATUS_IS_EOF(rv) && ! APR_STATUS_IS_TIMEUP(rv)) ap_log_error(APLOG_MARK, APLOG_INFO, rv, c->base_server, "ProtocolEcho: Failure reading from %s", c->remote_ip); -- 2.40.0