You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bn...@apache.org on 2006/01/18 05:19:07 UTC

svn commit: r370039 - in /httpd/httpd/trunk/modules/aaa: mod_authz_host.c mod_authz_user.c

Author: bnicholes
Date: Tue Jan 17 20:19:04 2006
New Revision: 370039

URL: http://svn.apache.org/viewcvs?rev=370039&view=rev
Log:
Remove the call to ap_note_auth_failure() from the providers.  mod_authz_core will make the call if it is necessary.

Modified:
    httpd/httpd/trunk/modules/aaa/mod_authz_host.c
    httpd/httpd/trunk/modules/aaa/mod_authz_user.c

Modified: httpd/httpd/trunk/modules/aaa/mod_authz_host.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/aaa/mod_authz_host.c?rev=370039&r1=370038&r2=370039&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/aaa/mod_authz_host.c (original)
+++ httpd/httpd/trunk/modules/aaa/mod_authz_host.c Tue Jan 17 20:19:04 2006
@@ -109,7 +109,6 @@
                   "'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 @@
                   "'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 @@
                       r->uri, r->user);
     }
 
-    ap_note_auth_failure(r);
     return AUTHZ_DENIED;
 }
 

Modified: httpd/httpd/trunk/modules/aaa/mod_authz_user.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/aaa/mod_authz_user.c?rev=370039&r1=370038&r2=370039&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/aaa/mod_authz_user.c (original)
+++ httpd/httpd/trunk/modules/aaa/mod_authz_user.c Tue Jan 17 20:19:04 2006
@@ -62,7 +62,6 @@
                   "'require'ments for user to be allowed access",
                   r->uri, r->user);
 
-    ap_note_auth_failure(r);
     return AUTHZ_DENIED;
 }