]> granicus.if.org Git - apache/commitdiff
back out the logging of read errors in getline. daedalus was logging
authorGreg Ames <gregames@apache.org>
Wed, 21 Mar 2001 02:20:00 +0000 (02:20 +0000)
committerGreg Ames <gregames@apache.org>
Wed, 21 Mar 2001 02:20:00 +0000 (02:20 +0000)
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

server/protocol.c

index 86a01e91e4859d38709c4ac237183c1ee116ed0d..6f078be14d6724ba1dcf131b4b245f77f6f98264 100644 (file)
@@ -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;
             }
         }