You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2005/01/05 15:08:08 UTC

svn commit: r124202 - /httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c

Author: trawick
Date: Wed Jan  5 06:08:00 2005
New Revision: 124202

URL: http://svn.apache.org/viewcvs?view=rev&rev=124202
Log:
Fix a problem in the path which preserves the input content
length; the header brigade would get lost

Submitted by: Allan Edwards

Modified:
   httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c

Modified: httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c
Url: http://svn.apache.org/viewcvs/httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c?view=diff&rev=124202&p1=httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c&r1=124201&p2=httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c&r2=124202
==============================================================================
--- httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c	(original)
+++ httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c	Wed Jan  5 06:08:00 2005
@@ -457,7 +457,7 @@
             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;
         }