From 11c9a21e55bf7f08fc7b02288ec30a00a35b7cd3 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 9 Mar 2003 11:01:01 +0200 Subject: [PATCH] FETCH: \Seen flag updating didn't work (eg. FETCH BODY[]). --HG-- branch : HEAD --- src/lib-storage/index/index-fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib-storage/index/index-fetch.c b/src/lib-storage/index/index-fetch.c index 78f0eca529..5b74cf7e79 100644 --- a/src/lib-storage/index/index-fetch.c +++ b/src/lib-storage/index/index-fetch.c @@ -31,7 +31,7 @@ index_storage_fetch_init(struct mailbox *box, ctx = i_new(struct mail_fetch_context, 1); - if (!box->readonly && update_seen != NULL) + if (box->readonly && update_seen != NULL) *update_seen = FALSE; /* need exclusive lock to update the \Seen flags */ -- 2.47.3