From e5143bc75a5540ccbe590caad4e7318ee7c011c2 Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Tue, 4 Mar 2008 20:20:00 +0000 Subject: [PATCH] return AUTHZ_GRANTED instead of OK from the LDAP nested group checking. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@633620 13f79535-47bb-0310-9956-ffa450edef68 --- modules/aaa/mod_authnz_ldap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/aaa/mod_authnz_ldap.c b/modules/aaa/mod_authnz_ldap.c index 27702775f1..4034f5efb8 100644 --- a/modules/aaa/mod_authnz_ldap.c +++ b/modules/aaa/mod_authnz_ldap.c @@ -775,7 +775,7 @@ static authz_status ldapgroup_check_authorization(request_rec *r, "[%" APR_PID_T_FMT "] auth_ldap authorise: require group (sub-group): " "authorisation successful (attribute %s) [%s][%d - %s]", getpid(), ent[i].name, ldc->reason, result, ldap_err2string(result)); - return OK; + return AUTHZ_GRANTED; } else { ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, -- 2.50.1