From: Quanah Gibson-Mount Date: Mon, 17 Nov 2008 23:59:10 +0000 (+0000) Subject: s/not|got/(non)present/ X-Git-Tag: OPENLDAP_REL_ENG_2_4_13~23 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4c12cdcdec63edc7c5981b2434a534cc57856298;p=openldap s/not|got/(non)present/ --- diff --git a/servers/slapd/syncrepl.c b/servers/slapd/syncrepl.c index d46c94ed7c..a9f9cf66cc 100644 --- a/servers/slapd/syncrepl.c +++ b/servers/slapd/syncrepl.c @@ -3161,12 +3161,12 @@ nonpresent_callback( } if ( LogTest( LDAP_DEBUG_SYNC ) ) { - char buf[sizeof("rid=999 not")]; + char buf[sizeof("rid=999 non")]; snprintf( buf, sizeof(buf), "%s %s", si->si_ridtxt, - present_uuid ? "got" : "not" ); + present_uuid ? "" : "non" ); - Debug( LDAP_DEBUG_SYNC, "nonpresent_callback: %s UUID %s, dn %s\n", + Debug( LDAP_DEBUG_SYNC, "nonpresent_callback: %spresent UUID %s, dn %s\n", buf, a ? a->a_vals[0].bv_val : "", rs->sr_entry->e_name.bv_val ); }