mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 13:40:37 -05:00
fix attribute mapping bug
This commit is contained in:
parent
4f4f5dc93f
commit
cdc1e149ca
1 changed files with 1 additions and 1 deletions
|
|
@ -229,7 +229,7 @@ ldap_back_map_attrs(
|
|||
if (na == NULL)
|
||||
return(NULL);
|
||||
|
||||
for (i = 0; an[i].an_name.bv_val; i++) {
|
||||
for (i = 0; an[i].an_name.bv_val; ) {
|
||||
ldap_back_map(at_map, &an[i].an_name, &mapped, remap);
|
||||
if (mapped.bv_val != NULL) {
|
||||
na[i] = mapped.bv_val;
|
||||
|
|
|
|||
Loading…
Reference in a new issue