Roy T. Fielding
Fri, 09 May 2008 15:59:31 -0700
On May 9, 2008, at 3:40 PM, [EMAIL PROTECTED] wrote:
Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_http.cURL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/ mod_proxy_http.c?rev=654968&r1=654967&r2=654968&view=diff ====================================================================== ========--- httpd/httpd/trunk/modules/proxy/mod_proxy_http.c (original)+++ httpd/httpd/trunk/modules/proxy/mod_proxy_http.c Fri May 9 15:40:01 2008@@ -266,6 +266,10 @@ apr_brigade_length(bb, 0, &transferred); if (transferred != -1) conn->worker->s->transferred += transferred; +char tmp[1024000]; +apr_size_t tlen = 1024000; +apr_brigade_flatten(bb, tmp, &tlen); +printf(tmp, NULL); status = ap_pass_brigade(origin->output_filters, bb); if (status != APR_SUCCESS) { ap_log_error(APLOG_MARK, APLOG_ERR, status, r->server,
Please tell me that the chunk above is a mistaken commit. ....Roy