From: Greg Ames Date: Wed, 21 Mar 2001 02:20:00 +0000 (+0000) Subject: back out the logging of read errors in getline. daedalus was logging X-Git-Tag: 2.0.15~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=30eeae757cdb76aeed4837138e1a52a7f7f8dd99;p=apache back out the logging of read errors in getline. daedalus was logging boatloads of "(54)Connection reset by peer: ap_get_brigade() failed" errors. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88553 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index 86a01e91e4..6f078be14d 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -522,9 +522,6 @@ AP_CORE_DECLARE(int) ap_getline(char *s, int n, request_rec *r, int fold) if ((retval = ap_get_brigade(c->input_filters, b, AP_MODE_BLOCKING)) != APR_SUCCESS || APR_BRIGADE_EMPTY(b)) { apr_brigade_destroy(b); - if (retval != APR_EOF && retval != APR_TIMEUP) { - ap_log_rerror(APLOG_MARK, APLOG_ERR, retval, r, "ap_get_brigade() failed"); - } return -1; } }