diff options
author | Ronald Tschalar <ronald@apache.org> | 2000-03-10 15:28:07 +0100 |
---|---|---|
committer | Ronald Tschalar <ronald@apache.org> | 2000-03-10 15:28:07 +0100 |
commit | 590983d1a62088d489716a60659d67f787cc0b2b (patch) | |
tree | 850cbd62dd3fd50f1e722d44596aafa4df320c06 /modules/aaa/mod_auth_anon.c | |
parent | Add a new KEY (diff) | |
download | apache2-590983d1a62088d489716a60659d67f787cc0b2b.tar.xz apache2-590983d1a62088d489716a60659d67f787cc0b2b.zip |
changed module name to more consistent naming scheme, as used by configure: mod_auth_xxx -> auth_xxx_module
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84729 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/aaa/mod_auth_anon.c')
-rw-r--r-- | modules/aaa/mod_auth_anon.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/aaa/mod_auth_anon.c b/modules/aaa/mod_auth_anon.c index 2ee33ecbc3..b02dd79102 100644 --- a/modules/aaa/mod_auth_anon.c +++ b/modules/aaa/mod_auth_anon.c @@ -209,13 +209,13 @@ static const command_rec anon_auth_cmds[] = {NULL} }; -module MODULE_VAR_EXPORT anon_auth_module; +module MODULE_VAR_EXPORT auth_anon_module; static int anon_authenticate_basic_user(request_rec *r) { anon_auth_config_rec *sec = (anon_auth_config_rec *) ap_get_module_config(r->per_dir_config, - &anon_auth_module); + &auth_anon_module); const char *sent_pw; int res = DECLINED; @@ -276,7 +276,7 @@ static int check_anon_access(request_rec *r) conn_rec *c = r->connection; anon_auth_config_rec *sec = (anon_auth_config_rec *) ap_get_module_config(r->per_dir_config, - &anon_auth_module); + &auth_anon_module); if (!sec->auth_anon) return DECLINED; @@ -294,7 +294,7 @@ static void register_hooks(void) ap_hook_auth_checker(check_anon_access,NULL,NULL,HOOK_MIDDLE); } -module MODULE_VAR_EXPORT anon_auth_module = +module MODULE_VAR_EXPORT auth_anon_module = { STANDARD20_MODULE_STUFF, create_anon_auth_dir_config,/* dir config creater */ |