mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Fix ITS#3882
This commit is contained in:
parent
88737d900a
commit
cdefacccc6
@ -1637,11 +1637,10 @@ fe_aux_operational(
|
||||
{
|
||||
/* Let the overlays have a chance at this */
|
||||
be_orig = op->o_bd;
|
||||
if ( SLAP_ISOVERLAY( be_orig ) )
|
||||
op->o_bd = select_backend( be_orig->be_nsuffix, 0, 0 );
|
||||
op->o_bd = select_backend( &op->o_ndn, 0, 0 );
|
||||
|
||||
if ( ( SLAP_OPATTRS( rs->sr_attr_flags ) || rs->sr_attrs ) &&
|
||||
op->o_bd && op->o_bd->be_operational != NULL )
|
||||
op->o_bd != NULL && op->o_bd->be_operational != NULL )
|
||||
{
|
||||
rc = op->o_bd->be_operational( op, rs );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user