]> git.sur5r.net Git - openldap/commitdiff
minimal fix for ITS#5825, pending discussion
authorPierangelo Masarati <ando@openldap.org>
Sat, 22 Nov 2008 16:00:41 +0000 (16:00 +0000)
committerPierangelo Masarati <ando@openldap.org>
Sat, 22 Nov 2008 16:00:41 +0000 (16:00 +0000)
servers/slapd/syncrepl.c

index a9f9cf66cc8ca86ff031b14efca36a15e7e59fd5..2bdb2d683b4b571ffb58f1e0c8140588e2be82d9 100644 (file)
@@ -3905,6 +3905,11 @@ parse_syncrepl_line(
                return -1;
        }
 
+       if ( si->si_retryinterval == NULL ) {
+               Debug( LDAP_DEBUG_ANY, "syncrepl %s " SEARCHBASESTR "=\"%s\": no retry defined\n", 
+                       si->si_ridtxt, c->be->be_suffix ? c->be->be_suffix[ 0 ].bv_val : "(null)", 0 );
+       }
+
        return 0;
 }