You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2004/01/14 00:59:57 UTC

cvs commit: httpd-2.0/modules/http http_request.c

nd          2004/01/13 15:59:57

  Modified:    modules/http http_request.c
  Log:
  internal_fast_redirect: take over important request_rec members
  
  Revision  Changes    Path
  1.161     +3 -0      httpd-2.0/modules/http/http_request.c
  
  Index: http_request.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/http/http_request.c,v
  retrieving revision 1.160
  retrieving revision 1.161
  diff -u -u -r1.160 -r1.161
  --- http_request.c	1 Jan 2004 13:26:19 -0000	1.160
  +++ http_request.c	13 Jan 2004 23:59:57 -0000	1.161
  @@ -442,6 +442,9 @@
        * rr->pool.
        */
       apr_pool_join(r->pool, rr->pool);
  +    r->proxyreq = rr->proxyreq;
  +    r->no_cache = (r->no_cache && rr->no_cache);
  +    r->no_local_copy = (r->no_local_copy && rr->no_local_copy);
       r->mtime = rr->mtime;
       r->uri = rr->uri;
       r->filename = rr->filename;