]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove the call to ap_note_auth_failure() from the providers. mod_authz_core will...
authorBradley Nicholes <bnicholes@apache.org>
Wed, 18 Jan 2006 04:19:04 +0000 (04:19 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Wed, 18 Jan 2006 04:19:04 +0000 (04:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@370039 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/mod_authz_host.c
modules/aaa/mod_authz_user.c

index 89ebc023b681fda93911415a36d032f442004fa2..79b36760e700d6138c32cb30a3e3d163013610e2 100644 (file)
@@ -109,7 +109,6 @@ static authz_status env_check_authorization(request_rec *r, const char *require_
                   "'require'ments for user '%s' to be allowed access",
                   r->uri, r->user);
 
-    ap_note_auth_failure(r);
     return AUTHZ_DENIED;
 }
 
@@ -168,7 +167,6 @@ static authz_status ip_check_authorization(request_rec *r, const char *require_l
                   "'require'ments for user '%s' to be allowed access",
                   r->uri, r->user);
 
-    ap_note_auth_failure(r);
     return AUTHZ_DENIED;
 }
 
@@ -205,7 +203,6 @@ static authz_status host_check_authorization(request_rec *r, const char *require
                       r->uri, r->user);
     }
 
-    ap_note_auth_failure(r);
     return AUTHZ_DENIED;
 }
 
index 0292f841bf72a6ce84f6259b26a766fe5f455992..00878c041eb1bc5d2062dd5f81a60186a281fdc4 100644 (file)
@@ -62,7 +62,6 @@ static authz_status user_check_authorization(request_rec *r,
                   "'require'ments for user to be allowed access",
                   r->uri, r->user);
 
-    ap_note_auth_failure(r);
     return AUTHZ_DENIED;
 }