From: Mladen Turk Date: Wed, 29 Sep 2004 19:14:15 +0000 (+0000) Subject: The name of the module is mod_proxy not mpm_proxy. X-Git-Tag: 2.1.1~187 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f3c232041a92b31d566aa77993ffbc192ad45dc6;p=apache The name of the module is mod_proxy not mpm_proxy. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105348 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_balancer.c b/modules/proxy/proxy_balancer.c index 813f79eea2..1c307c753f 100644 --- a/modules/proxy/proxy_balancer.c +++ b/modules/proxy/proxy_balancer.c @@ -797,7 +797,7 @@ static void ap_proxy_balancer_register_hook(apr_pool_t *p) * make sure that we are called after the mpm * initializes and after the mod_proxy */ - static const char *const aszPred[] = { "mpm_winnt.c", "mpm_proxy.c", NULL}; + static const char *const aszPred[] = { "mpm_winnt.c", "mod_proxy.c", NULL}; /* manager handler */ ap_hook_handler(balancer_handler, NULL, NULL, APR_HOOK_FIRST); ap_hook_child_init(child_init, aszPred, NULL, APR_HOOK_MIDDLE);