mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 10:39:34 -05:00
fix rewrite iteration
This commit is contained in:
parent
bd535be5cb
commit
10352caec1
1 changed files with 1 additions and 1 deletions
|
|
@ -486,7 +486,7 @@ ldap_send_entry(
|
|||
} else if ( strcmp( attr->a_desc->ad_type->sat_syntax->ssyn_oid,
|
||||
SLAPD_DN_SYNTAX ) == 0 ) {
|
||||
int i;
|
||||
for ( i = 0; ( bv = &attr->a_vals[ i ] ); i++ ) {
|
||||
for ( i = 0, bv = attr->a_vals; bv->bv_val; bv++, i++ ) {
|
||||
char *newval;
|
||||
|
||||
switch ( rewrite_session( li->rwinfo,
|
||||
|
|
|
|||
Loading…
Reference in a new issue