From: Pierangelo Masarati Date: Sun, 16 Nov 2008 20:33:03 +0000 (+0000) Subject: s/not|got/(non)present/ (more readable, isn't it?) X-Git-Tag: ACLCHECK_0~1087 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=bbcc89ecd377b86781103bac22b7e509bd414827;p=openldap s/not|got/(non)present/ (more readable, isn't it?) --- 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 ); }