]> granicus.if.org Git - apache/commitdiff
Disable the buffer_filter because it may be masking bugs in the bucket brigade
authorBill Stoddard <stoddard@apache.org>
Thu, 5 Oct 2000 14:00:59 +0000 (14:00 +0000)
committerBill Stoddard <stoddard@apache.org>
Thu, 5 Oct 2000 14:00:59 +0000 (14:00 +0000)
code.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86402 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_protocol.c

index 7ee84088c588f25b50a82ba1e720729beda1cb06..f80f5f48291d9331191e145cfd0b5044f91013cc 100644 (file)
@@ -2099,7 +2099,9 @@ API_EXPORT(void) ap_send_http_header(request_rec *r)
     if (r->chunked) {
         apr_table_mergen(r->headers_out, "Transfer-Encoding", "chunked");
         apr_table_unset(r->headers_out, "Content-Length");
-        ap_add_output_filter("BUFFER", NULL, r, r->connection);
+        /* Disable the buffer filter because it may be masking bugs in the 
+         * bucket brigade code 
+         * ap_add_output_filter("BUFFER", NULL, r, r->connection); */
         ap_add_output_filter("CHUNK", NULL, r, r->connection);
     }