]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove double calculation of tranfered bytes to backend.
authorMladen Turk <mturk@apache.org>
Sun, 31 Oct 2004 16:21:19 +0000 (16:21 +0000)
committerMladen Turk <mturk@apache.org>
Sun, 31 Oct 2004 16:21:19 +0000 (16:21 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105645 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/proxy_http.c

index 14933bcd1fc2899856268ec65cb4231283a2bf1c..f083971f1ea1505e0f0a0fb36a1da7546e4eccec 100644 (file)
@@ -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);