From: Ruediger Pluem Date: Fri, 20 Jul 2018 19:29:06 +0000 (+0000) Subject: * Remove invalid copy and paste comments X-Git-Tag: 2.5.0-alpha2-ci-test-only~2450 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ab482e977d4c84742734ff9c373b032fbe33086;p=thirdparty%2Fapache%2Fhttpd.git * Remove invalid copy and paste comments git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1836382 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/balancers/mod_lbmethod_byrequests.c b/modules/proxy/balancers/mod_lbmethod_byrequests.c index 07822e702bd..c9453a09ffd 100644 --- a/modules/proxy/balancers/mod_lbmethod_byrequests.c +++ b/modules/proxy/balancers/mod_lbmethod_byrequests.c @@ -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); } diff --git a/modules/proxy/balancers/mod_lbmethod_bytraffic.c b/modules/proxy/balancers/mod_lbmethod_bytraffic.c index b87db5adc6d..89c84d2cc81 100644 --- a/modules/proxy/balancers/mod_lbmethod_bytraffic.c +++ b/modules/proxy/balancers/mod_lbmethod_bytraffic.c @@ -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); }