From fba0d7e7f265f83160229170de69b23d5f181847 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 10 Aug 2003 21:14:39 +0300 Subject: [PATCH] crashfix --HG-- branch : HEAD --- src/imap/cmd-store.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imap/cmd-store.c b/src/imap/cmd-store.c index 00d4b7f27e..61b2dcbfef 100644 --- a/src/imap/cmd-store.c +++ b/src/imap/cmd-store.c @@ -96,7 +96,7 @@ int cmd_store(struct client *client) /* and update the flags */ box = client->mailbox; - if (!box->is_readonly(box)) { + if (box->is_readonly(box)) { /* read-only, don't every try to get write locking */ failed = FALSE; } else { -- 2.47.3