mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-05 14:42:10 -05:00
ITS#9121 fix memberOf eval
Must disable ACL group caching when checking membership
This commit is contained in:
parent
9a8d7f305b
commit
cb42a6e91a
1 changed files with 4 additions and 1 deletions
|
|
@ -973,7 +973,10 @@ dynlist_search2resp( Operation *op, SlapReply *rs )
|
|||
dyn = ptr->avl_data;
|
||||
for ( dlm = dyn->dy_dli->dli_dlm; dlm; dlm = dlm->dlm_next ) {
|
||||
if ( dlm->dlm_memberOf_ad ) {
|
||||
rc = backend_group( op, NULL, &dyn->dy_name,
|
||||
Operation o = *op;
|
||||
o.o_do_not_cache = 1;
|
||||
o.o_groups = NULL;
|
||||
rc = backend_group( &o, NULL, &dyn->dy_name,
|
||||
&e->e_nname, dyn->dy_dli->dli_oc, dyn->dy_dli->dli_ad );
|
||||
if ( rc == LDAP_SUCCESS ) {
|
||||
/* ensure e is modifiable, but do not replace
|
||||
|
|
|
|||
Loading…
Reference in a new issue