]> granicus.if.org Git - apache/commitdiff
* Remove invalid copy and paste comments
authorRuediger Pluem <rpluem@apache.org>
Fri, 20 Jul 2018 19:29:06 +0000 (19:29 +0000)
committerRuediger Pluem <rpluem@apache.org>
Fri, 20 Jul 2018 19:29:06 +0000 (19:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1836382 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/balancers/mod_lbmethod_byrequests.c
modules/proxy/balancers/mod_lbmethod_bytraffic.c

index 07822e702bd696be1bf1bc9fa74839104c799360..c9453a09ffdc8653358fcd8025697db5c4692aed 100644 (file)
@@ -150,10 +150,6 @@ static int lbmethod_byrequests_post_config(apr_pool_t *pconf, apr_pool_t *plog,
 
 static void register_hook(apr_pool_t *p)
 {
-    /* Only the mpm_winnt has child init hook handler.
-     * make sure that we are called after the mpm
-     * initializes and after the mod_proxy
-     */
     ap_register_provider(p, PROXY_LBMETHOD, "byrequests", "0", &byrequests);
     ap_hook_post_config(lbmethod_byrequests_post_config, NULL, NULL, APR_HOOK_MIDDLE);
 }
index b87db5adc6dfe67f0b5fa3d20cc1e6c6a75c1a34..89c84d2cc815b4c1ef595689213ad74bd4d4f677 100644 (file)
@@ -120,10 +120,6 @@ static int lbmethod_bytraffic_post_config(apr_pool_t *pconf, apr_pool_t *plog,
 
 static void register_hook(apr_pool_t *p)
 {
-    /* Only the mpm_winnt has child init hook handler.
-     * make sure that we are called after the mpm
-     * initializes and after the mod_proxy
-     */
     ap_register_provider(p, PROXY_LBMETHOD, "bytraffic", "0", &bytraffic);
     ap_hook_post_config(lbmethod_bytraffic_post_config, NULL, NULL, APR_HOOK_MIDDLE);
 }