mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
do not add hasSubordinates if already present (blind-fixes ITS#6712 for back-sql)
This commit is contained in:
parent
41858b7047
commit
3dcc62503a
@ -123,7 +123,7 @@ backsql_operational(
|
||||
Debug( LDAP_DEBUG_TRACE, "==>backsql_operational(): entry \"%s\"\n",
|
||||
rs->sr_entry->e_nname.bv_val, 0, 0 );
|
||||
|
||||
for ( ap = &rs->sr_operational_attrs; *ap; ap = &(*ap)->a_next ) {
|
||||
for ( ap = &rs->sr_entry->e_attrs; *ap; ap = &(*ap)->a_next ) {
|
||||
if ( (*ap)->a_desc == slap_schema.si_ad_hasSubordinates ) {
|
||||
get_conn--;
|
||||
got[ BACKSQL_OP_HASSUBORDINATES ] = 1;
|
||||
@ -138,6 +138,27 @@ backsql_operational(
|
||||
}
|
||||
}
|
||||
|
||||
for ( ap = &rs->sr_operational_attrs; *ap; ap = &(*ap)->a_next ) {
|
||||
if ( !got[ BACKSQL_OP_HASSUBORDINATES ] &&
|
||||
(*ap)->a_desc == slap_schema.si_ad_hasSubordinates )
|
||||
{
|
||||
get_conn--;
|
||||
got[ BACKSQL_OP_HASSUBORDINATES ] = 1;
|
||||
|
||||
} else if ( !got[ BACKSQL_OP_ENTRYUUID ] &&
|
||||
(*ap)->a_desc == slap_schema.si_ad_entryUUID )
|
||||
{
|
||||
get_conn--;
|
||||
got[ BACKSQL_OP_ENTRYUUID ] = 1;
|
||||
|
||||
} else if ( !got[ BACKSQL_OP_ENTRYCSN ] &&
|
||||
(*ap)->a_desc == slap_schema.si_ad_entryCSN )
|
||||
{
|
||||
get_conn--;
|
||||
got[ BACKSQL_OP_ENTRYCSN ] = 1;
|
||||
}
|
||||
}
|
||||
|
||||
if ( !get_conn ) {
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user