mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 01:59:38 -05:00
allow intermixing of mapped/not mapped attrs (spotted while invstigating ITS#5717)
This commit is contained in:
parent
1b983cfb77
commit
43d0d989ef
1 changed files with 3 additions and 1 deletions
|
|
@ -306,7 +306,9 @@ dynlist_sc_update( Operation *op, SlapReply *rs )
|
|||
ad = a->a_desc;
|
||||
for ( dlm = dlc->dlc_dli->dli_dlm; dlm; dlm = dlm->dlm_next ) {
|
||||
if ( dlm->dlm_member_ad == a->a_desc ) {
|
||||
ad = dlm->dlm_mapped_ad;
|
||||
if ( dlm->dlm_mapped_ad ) {
|
||||
ad = dlm->dlm_mapped_ad;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue