Commit fc6119c3 authored by Jim Jagielski's avatar Jim Jagielski
Browse files

Make sure updatelbstatus() is NULL


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1802845 13f79535-47bb-0310-9956-ffa450edef68
parent 49a3e817
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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)
+2 −1
Original line number Diff line number Diff line
@@ -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)
+2 −1
Original line number Diff line number Diff line
@@ -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)
+2 −1
Original line number Diff line number Diff line
@@ -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,
+2 −1
Original line number Diff line number Diff line
@@ -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)