diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2001-11-13 18:39:29 +0100 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2001-11-13 18:39:29 +0100 |
commit | e304dcda410d1d988d8dd84de07f0fef0a64f829 (patch) | |
tree | c54204e727d660c6122b795836cbfc4c5f52df95 /os/netware | |
parent | Module that takes advantage of the built-in SSL functionality on the (diff) | |
download | apache2-e304dcda410d1d988d8dd84de07f0fef0a64f829.tar.xz apache2-e304dcda410d1d988d8dd84de07f0fef0a64f829.zip |
Added the NetWare SSL module to the prebuilt module list
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91905 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/netware')
-rw-r--r-- | os/netware/modules.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/os/netware/modules.c b/os/netware/modules.c index 0d71f22226..d677ed3873 100644 --- a/os/netware/modules.c +++ b/os/netware/modules.c @@ -27,6 +27,7 @@ extern module asis_module; extern module imap_module; extern module actions_module; extern module setenvif_module; +extern module nwssl_module; module *ap_prelinked_modules[] = { &core_module, @@ -49,6 +50,7 @@ module *ap_prelinked_modules[] = { &imap_module, &actions_module, &setenvif_module, + &nwssl_module, NULL }; @@ -73,5 +75,6 @@ module *ap_preloaded_modules[] = { &imap_module, &actions_module, &setenvif_module, + &nwssl_module, NULL }; |