From: Mladen Turk Date: Sun, 31 Oct 2004 16:21:19 +0000 (+0000) Subject: Remove double calculation of tranfered bytes to backend. X-Git-Tag: 2.1.1~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa194d57d3b32690a4e41555a967814255e58e90;p=thirdparty%2Fapache%2Fhttpd.git Remove double calculation of tranfered bytes to backend. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105645 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_http.c b/modules/proxy/proxy_http.c index 14933bcd1fc..f083971f1ea 100644 --- a/modules/proxy/proxy_http.c +++ b/modules/proxy/proxy_http.c @@ -487,7 +487,6 @@ apr_status_t ap_proxy_http_request(apr_pool_t *p, request_rec *r, apr_brigade_length(header_brigade, 0, &transfered); if (transfered != -1) conn->worker->s->transfered += transfered; - conn->worker->s->transfered += transfered; if (send_chunks) { status = ap_pass_brigade(origin->output_filters, header_brigade);