diff options
author | Chris Darroch <chrisd@apache.org> | 2008-11-02 05:21:48 +0100 |
---|---|---|
committer | Chris Darroch <chrisd@apache.org> | 2008-11-02 05:21:48 +0100 |
commit | cf4e94f55e8a6434fee0fee2a8ee09beaf273591 (patch) | |
tree | d3d9e5a323e197fa3bd1787a8c9d498e2b3097db /os/netware | |
parent | Fix handling of authz configurations, make default authz logic replicate (diff) | |
download | apache2-cf4e94f55e8a6434fee0fee2a8ee09beaf273591.tar.xz apache2-cf4e94f55e8a6434fee0fee2a8ee09beaf273591.zip |
Remove mod_authn_default and mod_authz_default.
Note: I've attempted to work through the Windows and Netware build files,
but if those with such systems could repair any damage, that would be
appreciated.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@709839 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/netware')
-rw-r--r-- | os/netware/modules.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/os/netware/modules.c b/os/netware/modules.c index 4ef2fe87b8..261daebaf3 100644 --- a/os/netware/modules.c +++ b/os/netware/modules.c @@ -29,9 +29,7 @@ extern module http_module; extern module so_module; extern module mime_module; extern module authn_core_module; -extern module authn_default_module; extern module authz_core_module; -extern module authz_default_module; extern module authz_host_module; extern module negotiation_module; extern module include_module; @@ -52,9 +50,7 @@ module *ap_prelinked_modules[] = { &so_module, &mime_module, &authn_core_module, - &authn_default_module, &authz_core_module, - &authz_default_module, &authz_host_module, &negotiation_module, &include_module, @@ -77,9 +73,7 @@ ap_module_symbol_t ap_prelinked_module_symbols[] = { {"so_module", &so_module}, {"mime_module", &mime_module}, {"authn_core_module", &authn_core_module}, - {"authn_default_module", &authn_default_module}, {"authz_core_module", &authz_core_module}, - {"authz_default_module", &authz_default_module}, {"authz_host_module", &authz_host_module}, {"negotiation_module", &negotiation_module}, {"include_module", &include_module}, @@ -102,9 +96,7 @@ module *ap_preloaded_modules[] = { &so_module, &mime_module, &authn_core_module, - &authn_default_module, &authz_core_module, - &authz_default_module, &authz_host_module, &negotiation_module, &include_module, |