comparison src/lib-storage/index/maildir/maildir-uidlist.c @ 9495:24e48c1d7f79 HEAD

maildir: Removed logging extraneous errors, again.
author Timo Sirainen <tss@iki.fi>
date Thu, 03 Dec 2009 11:14:45 -0600
parents c9cc50405ca4
children d00abdaf9df2
comparison
equal deleted inserted replaced
9494:c9cc50405ca4 9495:24e48c1d7f79
1249 array_append(&new_records, &recs[i], 1); 1249 array_append(&new_records, &recs[i], 1);
1250 seq++; i++; 1250 seq++; i++;
1251 } 1251 }
1252 } 1252 }
1253 1253
1254 for (; seq <= hdr->messages_count; seq++) {
1255 rec = mail_index_lookup(view, seq);
1256 i_error("%s: uid=%u exists in index tail, but not in uidlist",
1257 uidlist->path, rec->uid);
1258 }
1259
1260 /* drop messages expunged at the end of index */ 1254 /* drop messages expunged at the end of index */
1261 while (i < count && recs[i]->uid < hdr->next_uid) 1255 while (i < count && recs[i]->uid < hdr->next_uid)
1262 i++; 1256 i++;
1263 /* view might not be completely up-to-date, so preserve any 1257 /* view might not be completely up-to-date, so preserve any
1264 messages left */ 1258 messages left */