From 29859c196d3a3e6f86f5659990463d11829beaba Mon Sep 17 00:00:00 2001 From: baalberith Date: Mon, 9 Mar 2009 19:52:17 +0000 Subject: [PATCH] fixed return value when using basic provider to pass the auth to other modules (in case of fail). --- src/mod_auth_kerb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod_auth_kerb.c b/src/mod_auth_kerb.c index 0091765..cc15efd 100644 --- a/src/mod_auth_kerb.c +++ b/src/mod_auth_kerb.c @@ -1706,7 +1706,7 @@ static authn_status authn_krb_password(request_rec *r, const char *user, ret = authenticate_user(r, auth_line, type, 1, 1); if (ret == OK) return AUTH_GRANTED; - else return AUTH_DENIED; + else return AUTH_USER_NOT_FOUND; } static int -- 2.1.4