mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-07 07:30:57 -05:00
handle valid non-entry internal search responses (ITS#6481)
This commit is contained in:
parent
7ca6247395
commit
b8472e3756
1 changed files with 10 additions and 1 deletions
|
|
@ -2132,7 +2132,16 @@ acl_set_cb_gather( Operation *op, SlapReply *rs )
|
|||
}
|
||||
|
||||
} else {
|
||||
assert( rs->sr_type == REP_RESULT );
|
||||
switch ( rs->sr_type ) {
|
||||
case REP_SEARCHREF:
|
||||
case REP_INTERMEDIATE:
|
||||
/* ignore */
|
||||
break;
|
||||
|
||||
default:
|
||||
assert( rs->sr_type == REP_RESULT );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue