summaryrefslogtreecommitdiff
path: root/modules/proxy/proxy_http.c
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2002-04-08 18:38:56 +0000
committerDoug MacEachern <dougm@apache.org>2002-04-08 18:38:56 +0000
commit9fb5b384d74147f72b0d5d826cdb31269573b2c9 (patch)
tree4873917fa6dc78335fe8b882caf2f3dd700597e7 /modules/proxy/proxy_http.c
parent265798792336140c896678d3d4628d4c9573a122 (diff)
downloadhttpd-9fb5b384d74147f72b0d5d826cdb31269573b2c9.tar.gz
PR:
Obtained from: Submitted by: Daniel Lopez <daniel@covalent.net> Reviewed by: dougm, rbb add optional fixup hook to proxy git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94544 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/proxy/proxy_http.c')
-rw-r--r--modules/proxy/proxy_http.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/proxy/proxy_http.c b/modules/proxy/proxy_http.c
index 52437041eb..eff26563b4 100644
--- a/modules/proxy/proxy_http.c
+++ b/modules/proxy/proxy_http.c
@@ -547,6 +547,7 @@ apr_status_t ap_proxy_http_request(apr_pool_t *p, request_rec *r,
}
/* send request headers */
+ proxy_run_fixups(r);
headers_in_array = apr_table_elts(r->headers_in);
headers_in = (const apr_table_entry_t *) headers_in_array->elts;
for (counter = 0; counter < headers_in_array->nelts; counter++) {