mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Fix prev commit, must passthru precomputed scopes
This commit is contained in:
parent
fb52e37e06
commit
9e8bbf129f
1 changed files with 5 additions and 0 deletions
|
|
@ -238,6 +238,11 @@ list_candidates(
|
|||
#endif
|
||||
|
||||
for ( f = flist; f != NULL; f = f->f_next ) {
|
||||
/* ignore precomputed scopes */
|
||||
if ( f->f_choice == SLAPD_FILTER_COMPUTED &&
|
||||
f->f_result == LDAP_SUCCESS ) {
|
||||
continue;
|
||||
}
|
||||
rc = bdb_filter_candidates( op, f, save, tmp,
|
||||
save+BDB_IDL_UM_SIZE );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue