From: Howard Chu Date: Sun, 22 Nov 2009 00:08:52 +0000 (+0000) Subject: ITS#6394 partially revert ITS#5108. Use RID_MAX, as originally designed. X-Git-Tag: ACLCHECK_0~74 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=77680f78a8303272140a5ccaf5af39970b6bdc15;p=openldap ITS#6394 partially revert ITS#5108. Use RID_MAX, as originally designed. --- diff --git a/servers/slapd/syncrepl.c b/servers/slapd/syncrepl.c index a9b3d7150b..703fe25a6b 100644 --- a/servers/slapd/syncrepl.c +++ b/servers/slapd/syncrepl.c @@ -4027,10 +4027,10 @@ parse_syncrepl_line( Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 ); return -1; } - if ( tmp > SLAP_SYNC_SID_MAX || tmp < 0 ) { + if ( tmp > SLAP_SYNC_RID_MAX || tmp < 0 ) { snprintf( c->cr_msg, sizeof( c->cr_msg ), "Error: parse_syncrepl_line: " - "syncrepl id %d is out of range [0..4095]", tmp ); + "syncrepl id %d is out of range [0..%d]", tmp, SLAP_SYNC_RID_MAX ); Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 ); return -1; } @@ -4555,7 +4555,7 @@ syncrepl_unparse( syncinfo_t *si, struct berval *bv ) si->si_bindconf.sb_version = LDAP_VERSION3; ptr = buf; - assert( si->si_rid >= 0 && si->si_rid <= SLAP_SYNC_SID_MAX ); + assert( si->si_rid >= 0 && si->si_rid <= SLAP_SYNC_RID_MAX ); len = snprintf( ptr, WHATSLEFT, IDSTR "=%03d " PROVIDERSTR "=%s", si->si_rid, si->si_bindconf.sb_uri.bv_val ); if ( len >= sizeof( buf ) ) return;