From: Howard Chu Date: Wed, 7 Feb 2007 00:41:15 +0000 (+0000) Subject: ITS#4832 fix unint'd var X-Git-Tag: OPENLDAP_REL_ENG_2_4_4ALPHA~8^2~55 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=04f46aa880853c369928028ecdd4e06670921161;p=openldap ITS#4832 fix unint'd var --- diff --git a/servers/slapd/syncrepl.c b/servers/slapd/syncrepl.c index 29454e8090..cb14169c8f 100644 --- a/servers/slapd/syncrepl.c +++ b/servers/slapd/syncrepl.c @@ -799,6 +799,7 @@ do_syncrep2( } if ( !syncCookie_req.ctxcsn ) { match = -1; + m = 0; } else if ( !syncCookie.ctxcsn ) { match = 1; } else { @@ -945,6 +946,7 @@ do_syncrep2( if ( !syncCookie_req.ctxcsn ) { match = -1; + m = 0; } else if ( !syncCookie.ctxcsn ) { match = 1; } else {