mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 17:19:43 -05:00
re-fix previus commit the other way 'round (rids are < 1000)
This commit is contained in:
parent
b0f63112be
commit
5ed0fc3749
1 changed files with 2 additions and 2 deletions
|
|
@ -3804,8 +3804,8 @@ syncrepl_unparse( syncinfo_t *si, struct berval *bv )
|
|||
si->si_bindconf.sb_version = LDAP_VERSION3;
|
||||
|
||||
ptr = buf;
|
||||
ptr += snprintf( ptr, WHATSLEFT, IDSTR "=%03ld " PROVIDERSTR "=%s",
|
||||
(long)si->si_rid, si->si_bindconf.sb_uri.bv_val );
|
||||
ptr += snprintf( ptr, WHATSLEFT, IDSTR "=%03d " PROVIDERSTR "=%s",
|
||||
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