From: Rainer Jung Date: Mon, 17 Jan 2011 22:09:18 +0000 (+0000) Subject: mod_slotmem_shm is a predecessor of X-Git-Tag: 2.3.11~173 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e981d902a156d1a042934ae776fdf052a0d2d9b;p=thirdparty%2Fapache%2Fhttpd.git mod_slotmem_shm is a predecessor of mod_proxy_balancer, not mod_proxy. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1060109 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 5988ed530fb..90388a3f075 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -2459,7 +2459,7 @@ static void register_hooks(apr_pool_t *p) * make sure that we are called after the mpm * initializes. */ - static const char *const aszPred[] = { "mpm_winnt.c", "mod_proxy_balancer.c", "mod_slotmem_shm.c", NULL}; + static const char *const aszPred[] = { "mpm_winnt.c", "mod_proxy_balancer.c", NULL}; /* handler */ ap_hook_handler(proxy_handler, NULL, NULL, APR_HOOK_FIRST); diff --git a/modules/proxy/mod_proxy_balancer.c b/modules/proxy/mod_proxy_balancer.c index 7b26ce12c76..fb4cc788f86 100644 --- a/modules/proxy/mod_proxy_balancer.c +++ b/modules/proxy/mod_proxy_balancer.c @@ -1118,7 +1118,7 @@ static void ap_proxy_balancer_register_hook(apr_pool_t *p) * make sure that we are called after the mpm * initializes */ - static const char *const aszPred[] = { "mpm_winnt.c", NULL}; + static const char *const aszPred[] = { "mpm_winnt.c", "mod_slotmem_shm.c", NULL}; /* manager handler */ ap_hook_post_config(balancer_post_config, NULL, NULL, APR_HOOK_MIDDLE); ap_hook_pre_config(balancer_pre_config, NULL, NULL, APR_HOOK_MIDDLE);