You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2003/01/06 05:01:17 UTC

cvs commit: httpd-2.0/modules/aaa mod_authz_default.c

nd          2003/01/05 20:01:17

  Modified:    modules/aaa mod_authz_default.c
  Log:
  use less specific ap_note_auth_failure API call, since it _is_ less specific.
  
  Revision  Changes    Path
  1.4       +1 -1      httpd-2.0/modules/aaa/mod_authz_default.c
  
  Index: mod_authz_default.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/aaa/mod_authz_default.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- mod_authz_default.c	8 Dec 2002 21:18:29 -0000	1.3
  +++ mod_authz_default.c	6 Jan 2003 04:01:17 -0000	1.4
  @@ -150,7 +150,7 @@
                             "access to %s failed, reason: require directives "
                             "present and no Authoritative handler.", r->uri);
   
  -    ap_note_basic_auth_failure(r);
  +    ap_note_auth_failure(r);
       return HTTP_UNAUTHORIZED;
   }