propagate search result (maybe this is not what bdb_psearch() is intended to do...)

This commit is contained in:
Pierangelo Masarati 2004-06-28 21:08:32 +00:00
parent a4f50c268a
commit a7a90609a9

View File

@ -364,9 +364,13 @@ int bdb_search( Operation *op, SlapReply *rs )
int bdb_psearch( Operation *op, SlapReply *rs, Operation *sop,
Entry *ps_e, int ps_type )
{
int rc;
sop->o_private = op->o_private;
bdb_do_search( op, rs, sop, ps_e, ps_type );
rc = bdb_do_search( op, rs, sop, ps_e, ps_type );
sop->o_private = NULL;
return rc;
}
/* For persistent searches, op is the currently executing operation,