From: Hallvard Furuseth Date: Sat, 29 Nov 2003 17:26:23 +0000 (+0000) Subject: Format %d -> %ld. X-Git-Tag: OPENLDAP_REL_ENG_2_1_MP~344 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3d522a0c9fd79b0275a219bde1f4465b181a9318;p=openldap Format %d -> %ld. --- diff --git a/servers/slapd/back-bdb/ctxcsn.c b/servers/slapd/back-bdb/ctxcsn.c index 495b191224..1428d51900 100644 --- a/servers/slapd/back-bdb/ctxcsn.c +++ b/servers/slapd/back-bdb/ctxcsn.c @@ -266,7 +266,7 @@ bdb_get_commit_csn( struct berval bv; LDAP_STAILQ_FOREACH( si, &op->o_bd->be_syncinfo, si_next ) { - sprintf( substr, "cn=syncrepl%d", si->si_rid ); + sprintf( substr, "cn=syncrepl%ld", si->si_rid ); ber_str2bv( substr, 0, 0, &bv ); build_new_dn( &ctxcsn_ndn, &op->o_bd->be_nsuffix[0], &bv, NULL );