From 1bb8bdbfd9627ed61c8dbfc4c34ec075b8431e05 Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Fri, 13 Sep 2002 21:43:22 +0000 Subject: [PATCH] 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 --- NWGNUmakefile | 3 +-- os/netware/modules.c | 9 +++------ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/NWGNUmakefile b/NWGNUmakefile index 82d2ce4424..1fe22497c3 100644 --- a/NWGNUmakefile +++ b/NWGNUmakefile @@ -194,11 +194,10 @@ FILES_nlm_objs = \ $(OBJDIR)/listen.o \ $(OBJDIR)/log.o \ $(OBJDIR)/main.o \ - $(OBJDIR)/mod_access.o \ + $(OBJDIR)/mod_authz_host.o \ $(OBJDIR)/mod_actions.o \ $(OBJDIR)/mod_alias.o \ $(OBJDIR)/mod_asis.o \ - $(OBJDIR)/mod_auth.o \ $(OBJDIR)/mod_autoindex.o \ $(OBJDIR)/mod_cgi.o \ $(OBJDIR)/mod_dir.o \ 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, -- 2.50.1