You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2002/09/03 09:12:46 UTC

cvs commit: apache-1.3/src/modules/proxy proxy_http.c

minfrin     2002/09/03 00:12:46

  Modified:    src      CHANGES
               src/modules/proxy proxy_http.c
  Log:
  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.
  Submitted by:	Martijn Schoemaker <ma...@osp.nl>
  Reviewed by:	Graham Leggett
  
  Revision  Changes    Path
  1.1844    +5 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1843
  retrieving revision 1.1844
  diff -u -r1.1843 -r1.1844
  --- CHANGES	1 Sep 2002 18:46:03 -0000	1.1843
  +++ CHANGES	3 Sep 2002 07:12:45 -0000	1.1844
  @@ -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 <ma...@osp.nl>]
  +
     *) Fix FileETags none operation.  PR 12202.
        [Justin Erenkrantz, Andrew Ho <an...@tellme.com>]
   
  
  
  
  1.101     +0 -2      apache-1.3/src/modules/proxy/proxy_http.c
  
  Index: proxy_http.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/modules/proxy/proxy_http.c,v
  retrieving revision 1.100
  retrieving revision 1.101
  diff -u -r1.100 -r1.101
  --- proxy_http.c	18 Jun 2002 00:59:59 -0000	1.100
  +++ proxy_http.c	3 Sep 2002 07:12:46 -0000	1.101
  @@ -520,8 +520,6 @@
               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 */