]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge the proxy_status too. Thanks to Christian von Rouques for the patch.
authorMladen Turk <mturk@apache.org>
Thu, 14 Oct 2004 16:00:41 +0000 (16:00 +0000)
committerMladen Turk <mturk@apache.org>
Thu, 14 Oct 2004 16:00:41 +0000 (16:00 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105457 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy.c

index 58bf73c8394e770b68af7346688dfcf505d290db..01d804f919ee59452b68f393a193c80319da8640 100644 (file)
@@ -825,6 +825,7 @@ static void * merge_proxy_config(apr_pool_t *p, void *basev, void *overridesv)
     ps->preserve_host = (overrides->preserve_host_set == 0) ? base->preserve_host : overrides->preserve_host;
     ps->timeout= (overrides->timeout_set == 0) ? base->timeout : overrides->timeout;
     ps->badopt = (overrides->badopt_set == 0) ? base->badopt : overrides->badopt;
+    ps->proxy_status = (overrides->proxy_status_set == 0) ? base->proxy_status : overrides->proxy_status;
     ps->pool = p;
     return ps;
 }