summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorEric Covener <covener@apache.org>2024-07-15 14:06:46 +0200
committerEric Covener <covener@apache.org>2024-07-15 14:06:46 +0200
commit3c84b560b515d5a5eb9231efef32b2c8c54aff49 (patch)
tree269b3ed3ca3f5989f55e05f225c6b2bbfc092e93 /modules
parentmerge leading slashes by default (diff)
downloadapache2-3c84b560b515d5a5eb9231efef32b2c8c54aff49.tar.xz
apache2-3c84b560b515d5a5eb9231efef32b2c8c54aff49.zip
copy the trusted flag from the subrequest
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919247 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r--modules/http/http_request.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http/http_request.c b/modules/http/http_request.c
index 65c389125a..e77f0eda5f 100644
--- a/modules/http/http_request.c
+++ b/modules/http/http_request.c
@@ -705,7 +705,7 @@ AP_DECLARE(void) ap_internal_fast_redirect(request_rec *rr, request_rec *r)
r->args = rr->args;
r->finfo = rr->finfo;
r->handler = rr->handler;
- ap_set_content_type_ex(r, rr->content_type, AP_REQUEST_IS_TRUSTED_CT(r));
+ ap_set_content_type_ex(r, rr->content_type, AP_REQUEST_IS_TRUSTED_CT(rr));
r->content_encoding = rr->content_encoding;
r->content_languages = rr->content_languages;
r->per_dir_config = rr->per_dir_config;