]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix a problem in proxy where headers from other modules were
authorGraham Leggett <minfrin@apache.org>
Tue, 3 Sep 2002 07:12:46 +0000 (07:12 +0000)
committerGraham Leggett <minfrin@apache.org>
Tue, 3 Sep 2002 07:12:46 +0000 (07:12 +0000)
added to the response headers when this was already done in the
core already. This resulted in header (and therefore cookie)
duplication.
PR:
Obtained from:
Submitted by: Martijn Schoemaker <martijn@osp.nl>
Reviewed by: Graham Leggett

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@96620 13f79535-47bb-0310-9956-ffa450edef68

src/CHANGES
src/modules/proxy/proxy_http.c

index 5d679e36266a45236db61042d3e78b05c5024e38..4ea1395d395e69d7b92bd07791755705239d509c 100644 (file)
@@ -1,5 +1,10 @@
 Changes with Apache 1.3.27
 
+  *) Fix a problem in proxy where headers from other modules were
+     added to the response headers when this was already done in the
+     core already. This resulted in header (and therefore cookie)
+     duplication. [Martijn Schoemaker <martijn@osp.nl>]
+
   *) Fix FileETags none operation.  PR 12202.
      [Justin Erenkrantz, Andrew Ho <andrew@tellme.com>]
 
index 6a9a4443fb800f8e7f202d8d0dc6217b578a83db..a11688d8a8c206a1cbdef06b2fbf2d5f834bd81a 100644 (file)
@@ -520,8 +520,6 @@ int ap_proxy_http_handler(request_rec *r, cache_req *c, char *url,
             c->len = ap_strtol(content_length, NULL, 10);
         }
 
-        /* Now add out bound headers set by other modules */
-        resp_hdrs = ap_overlay_tables(r->pool, r->err_headers_out, resp_hdrs);
     }
     else {
         /* an http/0.9 response */