From: Jeff Trawick Date: Sun, 22 Oct 2000 13:33:58 +0000 (+0000) Subject: Get HTTP/0.9 and subrequests working again. The http header filter X-Git-Tag: APACHE_2_0_ALPHA_8~282 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=95b1b283c38f9e75e736f356ed413d36073eacd3;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index a75f6f22712..091586b3688 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); } /*