summaryrefslogtreecommitdiff
path: root/os/netware
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2002-09-13 21:43:22 +0000
committerBradley Nicholes <bnicholes@apache.org>2002-09-13 21:43:22 +0000
commitebb7183a7bdce451a9ed22dc9a3c326cbc97d59f (patch)
tree4982bcb1e9450f340144513987d816f24a039f63 /os/netware
parent870bad0ffaf73a8226dcf7b69d6179a2bdab96d2 (diff)
downloadhttpd-ebb7183a7bdce451a9ed22dc9a3c326cbc97d59f.tar.gz
Removed access_module, auth_module and added authz_host_module in
order to comply with the new auth module architecture git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96792 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/netware')
-rw-r--r--os/netware/modules.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/os/netware/modules.c b/os/netware/modules.c
index 966f9c731e..1ec622eaa4 100644
--- a/os/netware/modules.c
+++ b/os/netware/modules.c
@@ -12,8 +12,7 @@ extern module mpm_netware_module;
extern module http_module;
extern module so_module;
extern module mime_module;
-extern module access_module;
-extern module auth_module;
+extern module authz_host_module;
extern module negotiation_module;
extern module include_module;
extern module autoindex_module;
@@ -36,8 +35,7 @@ module *ap_prelinked_modules[] = {
&http_module,
&so_module,
&mime_module,
- &access_module,
- &auth_module,
+ &authz_host_module,
&negotiation_module,
&include_module,
&autoindex_module,
@@ -62,8 +60,7 @@ module *ap_preloaded_modules[] = {
&http_module,
&so_module,
&mime_module,
- &access_module,
- &auth_module,
+ &authz_host_module,
&negotiation_module,
&include_module,
&autoindex_module,