From 0212cf9a42f351f41b751e1ec3ac21a1020ffc36 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sun, 22 Oct 2000 13:33:58 +0000 Subject: [PATCH] Get HTTP/0.9 and subrequests working again. The http header filter wasn't letting any assbackwards brigades get past it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86701 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/http_protocol.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index a75f6f2271..091586b368 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -2231,7 +2231,8 @@ AP_CORE_DECLARE_NONSTD(apr_status_t) ap_http_header_filter(ap_filter_t *f, ap_bu if (!r->main) ap_bsetopt(r->connection->client, BO_BYTECT, &zero); r->sent_bodyct = 1; - return APR_SUCCESS; + ap_remove_output_filter(f); + return ap_pass_brigade(f->next, b); } /* -- 2.50.1