mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
LDAPworld P5: SLAPD Negation of Non-Indexed Search
This commit is contained in:
parent
fbdb748a7d
commit
835d3ef9bd
1 changed files with 1 additions and 4 deletions
|
|
@ -726,12 +726,9 @@ idl_notin(
|
||||||
if ( a == NULL ) {
|
if ( a == NULL ) {
|
||||||
return( NULL );
|
return( NULL );
|
||||||
}
|
}
|
||||||
if ( b == NULL ) {
|
if ( b == NULL || ALLIDS( b )) {
|
||||||
return( idl_dup( a ) );
|
return( idl_dup( a ) );
|
||||||
}
|
}
|
||||||
if ( ALLIDS( b ) ) {
|
|
||||||
return( NULL );
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( ALLIDS( a ) ) {
|
if ( ALLIDS( a ) ) {
|
||||||
n = idl_alloc( SLAPD_LDBM_MIN_MAXIDS );
|
n = idl_alloc( SLAPD_LDBM_MIN_MAXIDS );
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue