diff options
author | Guenter Knauf <fuankg@apache.org> | 2009-12-01 14:51:47 +0000 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2009-12-01 14:51:47 +0000 |
commit | 84bda0e64aae5c6eac2c6225f93b0e0cec5e1066 (patch) | |
tree | 6086cad505e4947d9d64f6ee43b5ad0532fd491c /os | |
parent | fc9275da89fa2eff8ec1395138b06b6bc3aea59b (diff) | |
download | httpd-84bda0e64aae5c6eac2c6225f93b0e0cec5e1066.tar.gz |
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
Diffstat (limited to 'os')
-rw-r--r-- | os/netware/modules.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/os/netware/modules.c b/os/netware/modules.c index 261daebaf3..2937ed9b55 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 |