changeset 9422:73c4a7d325fe HEAD

QRESYNC: Fixed fallback handling to fetching expunged UIDs.
author Timo Sirainen <tss@iki.fi>
date Fri, 09 Oct 2009 20:33:27 -0400
parents 51329696ecf5
children c50acaf1f09f
files src/imap/imap-fetch.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/imap/imap-fetch.c	Fri Oct 09 20:33:16 2009 -0400
+++ b/src/imap/imap-fetch.c	Fri Oct 09 20:33:27 2009 -0400
@@ -219,7 +219,7 @@
 			if (next_uid < uid_filter[i].seq2)
 				next_uid++;
 			else if (++i < count)
-				next_uid = uid_filter[++i].seq1;
+				next_uid = uid_filter[i].seq1;
 			else
 				break;
 		} else {