Fix prev commit, must passthru precomputed scopes

This commit is contained in:
Howard Chu 2003-05-13 02:44:22 +00:00
parent fb52e37e06
commit 9e8bbf129f

View File

@ -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 );