You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mt...@apache.org on 2009/03/29 21:03:11 UTC

svn commit: r759746 - /httpd/httpd/trunk/modules/mappers/mod_watchdog.c

Author: mturk
Date: Sun Mar 29 19:03:11 2009
New Revision: 759746

URL: http://svn.apache.org/viewvc?rev=759746&view=rev
Log:
Don't test for active. It's set up from need hook

Modified:
    httpd/httpd/trunk/modules/mappers/mod_watchdog.c

Modified: httpd/httpd/trunk/modules/mappers/mod_watchdog.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/mappers/mod_watchdog.c?rev=759746&r1=759745&r2=759746&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/mappers/mod_watchdog.c (original)
+++ httpd/httpd/trunk/modules/mappers/mod_watchdog.c Sun Mar 29 19:03:11 2009
@@ -528,7 +528,7 @@
             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);