Skip to content

Commit 1bb8bdb

Browse files
author
Bradley Nicholes
committed
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
1 parent ab73d42 commit 1bb8bdb

2 files changed

Lines changed: 4 additions & 8 deletions

File tree

NWGNUmakefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,11 +194,10 @@ FILES_nlm_objs = \
194194
$(OBJDIR)/listen.o \
195195
$(OBJDIR)/log.o \
196196
$(OBJDIR)/main.o \
197-
$(OBJDIR)/mod_access.o \
197+
$(OBJDIR)/mod_authz_host.o \
198198
$(OBJDIR)/mod_actions.o \
199199
$(OBJDIR)/mod_alias.o \
200200
$(OBJDIR)/mod_asis.o \
201-
$(OBJDIR)/mod_auth.o \
202201
$(OBJDIR)/mod_autoindex.o \
203202
$(OBJDIR)/mod_cgi.o \
204203
$(OBJDIR)/mod_dir.o \

os/netware/modules.c

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ extern module mpm_netware_module;
1212
extern module http_module;
1313
extern module so_module;
1414
extern module mime_module;
15-
extern module access_module;
16-
extern module auth_module;
15+
extern module authz_host_module;
1716
extern module negotiation_module;
1817
extern module include_module;
1918
extern module autoindex_module;
@@ -36,8 +35,7 @@ module *ap_prelinked_modules[] = {
3635
&http_module,
3736
&so_module,
3837
&mime_module,
39-
&access_module,
40-
&auth_module,
38+
&authz_host_module,
4139
&negotiation_module,
4240
&include_module,
4341
&autoindex_module,
@@ -62,8 +60,7 @@ module *ap_preloaded_modules[] = {
6260
&http_module,
6361
&so_module,
6462
&mime_module,
65-
&access_module,
66-
&auth_module,
63+
&authz_host_module,
6764
&negotiation_module,
6865
&include_module,
6966
&autoindex_module,

0 commit comments

Comments
 (0)