From: Jeff Trawick Date: Wed, 5 Jan 2005 14:08:00 +0000 (+0000) Subject: Fix a problem in the path which preserves the input content X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=07c50805fb20e329fc9e05061c39ac252f90a0b3;p=thirdparty%2Fapache%2Fhttpd.git Fix a problem in the path which preserves the input content length; the header brigade would get lost Submitted by: Allan Edwards git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody@124202 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_http.c b/modules/proxy/proxy_http.c index 6900d3f242b..100cc0b979f 100644 --- a/modules/proxy/proxy_http.c +++ b/modules/proxy/proxy_http.c @@ -457,7 +457,7 @@ static apr_status_t stream_reqbody_cl(apr_pool_t *p, b = input_brigade; } - status = pass_brigade(r, conn, origin, input_brigade, 1); + status = pass_brigade(r, conn, origin, b, 1); if (status != APR_SUCCESS) { return status; }