summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2017-07-24 17:19:55 +0000
committerJim Jagielski <jim@apache.org>2017-07-24 17:19:55 +0000
commite85309d373a68650fa0d4eae73bbfb1f5121c9c0 (patch)
treef6c2867790d1f9fad71812bac1710c7321a3495d
parente3803ddc385821b0de152684848a207a0ad0fbb5 (diff)
downloadhttpd-e85309d373a68650fa0d4eae73bbfb1f5121c9c0.tar.gz
Make sure updatelbstatus() is NULL
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1802845 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/proxy/balancers/mod_lbmethod_bybusyness.c3
-rw-r--r--modules/proxy/balancers/mod_lbmethod_byrequests.c3
-rw-r--r--modules/proxy/balancers/mod_lbmethod_bytraffic.c3
-rw-r--r--modules/proxy/balancers/mod_lbmethod_heartbeat.c3
-rw-r--r--modules/proxy/examples/mod_lbmethod_rr.c3
5 files changed, 10 insertions, 5 deletions
diff --git a/modules/proxy/balancers/mod_lbmethod_bybusyness.c b/modules/proxy/balancers/mod_lbmethod_bybusyness.c
index 67d53a3551..30a8f55429 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 206fe9216b..83424cefed 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 b3fe556a55..6cf2478de5 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 8b52eca6a2..640bddb7f7 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 8ad3c526c6..741cc8b6ff 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)