mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 03:29:35 -05:00
fix type/format mismatch
This commit is contained in:
parent
0b70e471f0
commit
b0f63112be
1 changed files with 1 additions and 1 deletions
|
|
@ -3805,7 +3805,7 @@ syncrepl_unparse( syncinfo_t *si, struct berval *bv )
|
|||
|
||||
ptr = buf;
|
||||
ptr += snprintf( ptr, WHATSLEFT, IDSTR "=%03ld " PROVIDERSTR "=%s",
|
||||
si->si_rid, si->si_bindconf.sb_uri.bv_val );
|
||||
(long)si->si_rid, si->si_bindconf.sb_uri.bv_val );
|
||||
if ( ptr - buf >= sizeof( buf ) ) return;
|
||||
if ( !BER_BVISNULL( &bc ) ) {
|
||||
if ( WHATSLEFT <= bc.bv_len ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue