From: Guenter Knauf Date: Tue, 1 Dec 2009 14:51:47 +0000 (+0000) Subject: added watchdog module to NetWare internal module list. X-Git-Tag: 2.3.5~108 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=84bda0e64aae5c6eac2c6225f93b0e0cec5e1066;p=thirdparty%2Fapache%2Fhttpd.git added watchdog module to NetWare internal module list. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@885777 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/os/netware/modules.c b/os/netware/modules.c index 261daebaf39..2937ed9b55f 100644 --- a/os/netware/modules.c +++ b/os/netware/modules.c @@ -38,6 +38,7 @@ extern module alias_module; extern module env_module; extern module log_config_module; extern module setenvif_module; +extern module watchdog_module; #ifdef USE_WINSOCK extern module nwssl_module; #endif @@ -59,6 +60,7 @@ module *ap_prelinked_modules[] = { &env_module, &log_config_module, &setenvif_module, + &watchdog_module, #ifdef USE_WINSOCK &nwssl_module, #endif @@ -82,6 +84,7 @@ ap_module_symbol_t ap_prelinked_module_symbols[] = { {"env_module", &env_module}, {"log_config_module", &log_config_module}, {"setenvif_module", &setenvif_module}, + {"watchdog module", &watchdog_module}, #ifdef USE_WINSOCK {"nwssl_module", &nwssl_module}, #endif @@ -105,6 +108,7 @@ module *ap_preloaded_modules[] = { &env_module, &log_config_module, &setenvif_module, + &watchdog_module, #ifdef USE_WINSOCK &nwssl_module, #endif