dovecot: Code cleanup for last commit

dovecot at dovecot.org dovecot at dovecot.org
Wed Feb 13 20:04:42 EET 2008


details:   http://hg.dovecot.org/dovecot/rev/2194777bcd8e
changeset: 7235:2194777bcd8e
user:      Timo Sirainen <tss at iki.fi>
date:      Wed Feb 13 20:04:40 2008 +0200
description:
Code cleanup for last commit

diffstat:

1 file changed, 3 insertions(+), 5 deletions(-)
src/lib-index/mail-index-sync-update.c |    8 +++-----

diffs (25 lines):

diff -r 5e3c1fde2f78 -r 2194777bcd8e src/lib-index/mail-index-sync-update.c
--- a/src/lib-index/mail-index-sync-update.c	Wed Feb 13 20:00:41 2008 +0200
+++ b/src/lib-index/mail-index-sync-update.c	Wed Feb 13 20:04:40 2008 +0200
@@ -383,6 +383,9 @@ static int sync_header_update(const stru
 static int sync_header_update(const struct mail_transaction_header_update *u,
 			      struct mail_index_sync_map_ctx *ctx)
 {
+#define MAIL_INDEX_HEADER_UPDATE_FIELD_IN_RANGE(u, field) \
+	((u)->offset <= offsetof(struct mail_index_header, field) && \
+	 (u)->offset + (u)->size > offsetof(struct mail_index_header, field))
 	struct mail_index_map *map = ctx->view->map;
 	uint32_t orig_log_file_tail_offset = map->hdr.log_file_tail_offset;
 	uint32_t orig_next_uid = map->hdr.next_uid;
@@ -410,11 +413,6 @@ static int sync_header_update(const stru
 	}
 
 	/* UIDVALIDITY can be changed only by resetting the index */
-#define MAIL_INDEX_HEADER_UPDATE_FIELD_IN_RANGE(u, field) \
-	((u)->offset <= offsetof(struct mail_index_header, field) && \
-	 (u)->offset + (u)->size > offsetof(struct mail_index_header, field))
-
-
 	if (orig_uid_validity != 0 &&
 	    MAIL_INDEX_HEADER_UPDATE_FIELD_IN_RANGE(u, uid_validity)) {
 		mail_index_sync_set_corrupted(ctx,


More information about the dovecot-cvs mailing list