From: André Malo Date: Tue, 13 Jan 2004 23:59:57 +0000 (+0000) Subject: internal_fast_redirect: take over important request_rec members X-Git-Tag: pre_ajp_proxy~801 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=afc28afde4e4be5ea06c388cd4dfceabfc45850c;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/http/http_request.c b/modules/http/http_request.c index 034dbc380d9..b30e3be83db 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;