Fix ITS#3882

This commit is contained in:
Luke Howard 2005-07-25 13:19:38 +00:00
parent 88737d900a
commit cdefacccc6

View File

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