From 27808c64da310dbfac1be575f9178a45f2b38363 Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Thu, 5 Oct 2000 14:00:59 +0000 Subject: [PATCH] Disable the buffer_filter because it may be masking bugs in the bucket brigade code. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86402 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/http_protocol.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index 7ee84088c5..f80f5f4829 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -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); } -- 2.40.0