mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-10 22:33:07 -05:00
fix ITS#3834
This commit is contained in:
parent
deec44b89a
commit
61312e7989
1 changed files with 1 additions and 1 deletions
|
|
@ -2741,7 +2741,7 @@ syncrepl_unparse( syncinfo_t *si, struct berval *bv )
|
|||
if ( si->si_retrynum_init[i] == -1 )
|
||||
*ptr++ = '+';
|
||||
else
|
||||
ptr += sprintf( ptr, "%d", si->si_retrynum_init );
|
||||
ptr += sprintf( ptr, "%d", si->si_retrynum_init[i] );
|
||||
}
|
||||
*ptr++ = '"';
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue