From b2a0eb7075225fc4dcd94c2b17f4817a5c0d74da Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Thu, 1 May 2008 23:56:01 +0000 Subject: [PATCH] Fix prev commit --- servers/slapd/syncrepl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/servers/slapd/syncrepl.c b/servers/slapd/syncrepl.c index 6dd8ccbe24..d833e969af 100644 --- a/servers/slapd/syncrepl.c +++ b/servers/slapd/syncrepl.c @@ -2427,8 +2427,8 @@ syncrepl_del_nonpresent( f = cf; f->f_choice = LDAP_FILTER_AND; f->f_next = NULL; - f->f_and = ++f; - of = f; + f->f_and = f+1; + of = f->f_and; for ( i=0; inumcsns; i++ ) { f = of; f->f_choice = LDAP_FILTER_LE; -- 2.39.5