handle valid non-entry internal search responses (ITS#6481)

This commit is contained in:
Pierangelo Masarati 2010-03-22 21:50:32 +00:00
parent 7ca6247395
commit b8472e3756

View file

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