mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
Use be_match() instead of testing pointer equivalence
This commit is contained in:
parent
6cf14a777a
commit
53a15b6820
1 changed files with 1 additions and 1 deletions
|
|
@ -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 ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue