]> git.sur5r.net Git - openldap/commitdiff
s/not|got/(non)present/ (more readable, isn't it?)
authorPierangelo Masarati <ando@openldap.org>
Sun, 16 Nov 2008 20:33:03 +0000 (20:33 +0000)
committerPierangelo Masarati <ando@openldap.org>
Sun, 16 Nov 2008 20:33:03 +0000 (20:33 +0000)
servers/slapd/syncrepl.c

index d46c94ed7c9307888c7105add082c5af8f51fc6c..a9f9cf66cc8ca86ff031b14efca36a15e7e59fd5 100644 (file)
@@ -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 : "<missing>", rs->sr_entry->e_name.bv_val );
                        }