From: Jim Jagielski Date: Mon, 24 Jul 2017 17:19:55 +0000 (+0000) Subject: Make sure updatelbstatus() is NULL X-Git-Tag: 2.5.0-alpha~251 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e85309d373a68650fa0d4eae73bbfb1f5121c9c0;p=thirdparty%2Fapache%2Fhttpd.git Make sure updatelbstatus() is NULL git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1802845 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/balancers/mod_lbmethod_bybusyness.c b/modules/proxy/balancers/mod_lbmethod_bybusyness.c index 67d53a3551e..30a8f55429c 100644 --- a/modules/proxy/balancers/mod_lbmethod_bybusyness.c +++ b/modules/proxy/balancers/mod_lbmethod_bybusyness.c @@ -141,7 +141,8 @@ static const proxy_balancer_method bybusyness = &find_best_bybusyness, NULL, &reset, - &age + &age, + NULL }; static void register_hook(apr_pool_t *p) diff --git a/modules/proxy/balancers/mod_lbmethod_byrequests.c b/modules/proxy/balancers/mod_lbmethod_byrequests.c index 206fe9216b5..83424cefed9 100644 --- a/modules/proxy/balancers/mod_lbmethod_byrequests.c +++ b/modules/proxy/balancers/mod_lbmethod_byrequests.c @@ -177,7 +177,8 @@ static const proxy_balancer_method byrequests = &find_best_byrequests, NULL, &reset, - &age + &age, + NULL }; static void register_hook(apr_pool_t *p) diff --git a/modules/proxy/balancers/mod_lbmethod_bytraffic.c b/modules/proxy/balancers/mod_lbmethod_bytraffic.c index b3fe556a550..6cf2478de55 100644 --- a/modules/proxy/balancers/mod_lbmethod_bytraffic.c +++ b/modules/proxy/balancers/mod_lbmethod_bytraffic.c @@ -146,7 +146,8 @@ static const proxy_balancer_method bytraffic = &find_best_bytraffic, NULL, &reset, - &age + &age, + NULL }; static void register_hook(apr_pool_t *p) diff --git a/modules/proxy/balancers/mod_lbmethod_heartbeat.c b/modules/proxy/balancers/mod_lbmethod_heartbeat.c index 8b52eca6a27..640bddb7f75 100644 --- a/modules/proxy/balancers/mod_lbmethod_heartbeat.c +++ b/modules/proxy/balancers/mod_lbmethod_heartbeat.c @@ -358,7 +358,8 @@ static const proxy_balancer_method heartbeat = &find_best_hb, NULL, &reset, - &age + &age, + NULL }; static int lb_hb_init(apr_pool_t *p, apr_pool_t *plog, diff --git a/modules/proxy/examples/mod_lbmethod_rr.c b/modules/proxy/examples/mod_lbmethod_rr.c index 8ad3c526c6d..741cc8b6ff3 100644 --- a/modules/proxy/examples/mod_lbmethod_rr.c +++ b/modules/proxy/examples/mod_lbmethod_rr.c @@ -115,7 +115,8 @@ static const proxy_balancer_method roundrobin = &find_best_roundrobin, NULL, &reset, - &age + &age, + NULL }; static void ap_proxy_rr_register_hook(apr_pool_t *p)