From: Pierangelo Masarati Date: Sat, 22 Nov 2008 16:00:41 +0000 (+0000) Subject: minimal fix for ITS#5825, pending discussion X-Git-Tag: ACLCHECK_0~1062 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=31c61ad855c477f7ba65c23a68862180e54c2b76;p=openldap minimal fix for ITS#5825, pending discussion --- diff --git a/servers/slapd/syncrepl.c b/servers/slapd/syncrepl.c index a9f9cf66cc..2bdb2d683b 100644 --- a/servers/slapd/syncrepl.c +++ b/servers/slapd/syncrepl.c @@ -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; }