mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-31 03:59:34 -05:00
Fix minor bug in handling group ACLs.
This commit is contained in:
parent
acc740d54f
commit
c6ad81bcd2
1 changed files with 1 additions and 1 deletions
|
|
@ -601,7 +601,7 @@ acl_mask(
|
|||
* the values in the attribute group
|
||||
*/
|
||||
/* see if asker is listed in dnattr */
|
||||
if ( b->a_group_style != ACL_STYLE_REGEX ) {
|
||||
if ( b->a_group_style == ACL_STYLE_REGEX ) {
|
||||
string_expand(buf, sizeof(buf), b->a_group_pat, e->e_ndn, matches);
|
||||
if ( dn_normalize(buf) == NULL ) {
|
||||
/* did not expand to a valid dn */
|
||||
|
|
|
|||
Loading…
Reference in a new issue