mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-06 06:59:54 -05:00
do not add hasSubordinates if already present (blind-fixes ITS#6712 for back-ndb)
This commit is contained in:
parent
40831ba54f
commit
41858b7047
1 changed files with 8 additions and 3 deletions
|
|
@ -827,10 +827,15 @@ ndb_operational(
|
|||
assert( rs->sr_entry != NULL );
|
||||
|
||||
for ( ap = &rs->sr_operational_attrs; *ap; ap = &(*ap)->a_next )
|
||||
/* just count */ ;
|
||||
if ( (*ap)->a_desc == slap_schema.si_ad_hasSubordinates ) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if ( SLAP_OPATTRS( rs->sr_attr_flags ) ||
|
||||
ad_inlist( slap_schema.si_ad_hasSubordinates, rs->sr_attrs ) )
|
||||
if ( *ap == NULL &&
|
||||
attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_hasSubordinates ) == NULL &&
|
||||
( SLAP_OPATTRS( rs->sr_attr_flags ) ||
|
||||
ad_inlist( slap_schema.si_ad_hasSubordinates, rs->sr_attrs ) ) )
|
||||
{
|
||||
int hasSubordinates, rc;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue