1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

and swap Auth/UserCheck names to match the hook names, in hopes of preventing further foncusion

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90464 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doug MacEachern
2001-08-21 06:08:04 +00:00
parent ac9c800d11
commit 3468587a6c
2 changed files with 6 additions and 5 deletions

View File

@@ -1166,7 +1166,7 @@ int ssl_hook_Access(request_rec *r)
}
/*
* Auth Handler:
* Authentication Handler:
* Fake a Basic authentication from the X509 client certificate.
*
* This must be run fairly early on to prevent a real authentication from
@@ -1174,7 +1174,7 @@ int ssl_hook_Access(request_rec *r)
* authenticates a user. This means that the Module statement for this
* module should be LAST in the Configuration file.
*/
int ssl_hook_Auth(request_rec *r)
int ssl_hook_UserCheck(request_rec *r)
{
SSLSrvConfigRec *sc = mySrvConfig(r->server);
SSLDirConfigRec *dc = myDirConfig(r);
@@ -1245,7 +1245,8 @@ int ssl_hook_Auth(request_rec *r)
return DECLINED;
}
int ssl_hook_UserCheck(request_rec *r)
/* authorization phase */
int ssl_hook_Auth(request_rec *r)
{
SSLDirConfigRec *dc = myDirConfig(r);