From: Mladen Turk Date: Sun, 29 Mar 2009 19:03:11 +0000 (+0000) Subject: Don't test for active. It's set up from need hook X-Git-Tag: 2.3.3~758 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae1181d8f90506c27448c347f234e6e7762a92d4;p=thirdparty%2Fapache%2Fhttpd.git Don't test for active. It's set up from need hook git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@759746 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_watchdog.c b/modules/mappers/mod_watchdog.c index e5b96e0f421..17614dd9dcb 100644 --- a/modules/mappers/mod_watchdog.c +++ b/modules/mappers/mod_watchdog.c @@ -528,7 +528,7 @@ static int wd_post_config_hook(apr_pool_t *pconf, apr_pool_t *plog, ap_watchdog_t *w = ap_lookup_provider(AP_WATCHODG_PGROUP, wn[i].provider_name, AP_WATCHODG_CVERSION); - if (w && w->active) { + if (w) { if (!w->active) { int status = ap_run_watchdog_need(s, w->name, 0, w->singleton);