From afc28afde4e4be5ea06c388cd4dfceabfc45850c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Malo?= Date: Tue, 13 Jan 2004 23:59:57 +0000 Subject: [PATCH] internal_fast_redirect: take over important request_rec members git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102330 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/http_request.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/http/http_request.c b/modules/http/http_request.c index 034dbc380d..b30e3be83d 100644 --- a/modules/http/http_request.c +++ b/modules/http/http_request.c @@ -442,6 +442,9 @@ AP_DECLARE(void) ap_internal_fast_redirect(request_rec *rr, request_rec *r) * 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;