Use be_match() instead of testing pointer equivalence

This commit is contained in:
Luke Howard 2005-08-18 04:12:54 +00:00
parent 6cf14a777a
commit 53a15b6820

View file

@ -190,7 +190,7 @@ slapi_over_call_plugins( Slapi_PBlock *pb, int type )
PBLOCK_ASSERT_OP( pb, 0 );
op = pb->pb_op;
if ( op->o_bd != frontendDB ) {
if ( !be_match( op->o_bd, frontendDB ) ) {
rc = slapi_int_call_plugins( frontendDB, type, pb );
}
if ( rc >= 0 ) {