Commit 5f382d18 authored by Bill Stoddard's avatar Bill Stoddard
Browse files

Grrr.. Cliff warned me about this. APR should return APR_SUCCESS with

zero bytes read rather than APR_EOF. Will work on APR later...


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89508 13f79535-47bb-0310-9956-ffa450edef68
parent a74ef9f7
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -929,9 +929,9 @@ AP_CORE_DECLARE_NONSTD(apr_status_t) ap_content_length_filter(ap_filter_t *f,
                        break;
                    }
                }
                else  { 
                    ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, "ap_content_length_filter: "
                                  "apr_bucket_read() failed");
                else if (rv != APR_EOF) {
                    ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, 
                        "ap_content_length_filter: apr_bucket_read() failed");
                    return rv;
                }
            }