From: Brendan Cully Date: Sun, 7 Jun 2009 17:55:07 +0000 (-0700) Subject: Do not display error message when user declines to create target mailbox. X-Git-Tag: neomutt-20160307~597 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c8ba5e48e58a781e071bdf0a2520a4832232605;p=neomutt Do not display error message when user declines to create target mailbox. --- diff --git a/ChangeLog b/ChangeLog index 9e8a26d82..fad0720ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +2009-06-07 10:51 -0700 Brendan Cully (4207435525e4) + + * imap/message.c: Minor cleanup in imap_copy_messages. + +2009-06-07 08:14 +0200 Miroslav Lichvar (16592f0dfdaf) + + * configure.ac, mutt_ssl_gnutls.c: Disable checking certificate + activation/expiration times in gnutls as we do the checks ourselves. + +2009-06-06 22:31 -0700 Brendan Cully (e5c2befbf0f5) + + * imap/message.c: Do not treat already-seen headers as if they are + new. See #2935. + 2009-06-07 02:09 +0200 Rocco Rutte (a786b0e8627c) * doc/dotlock.man, doc/makedoc.c, doc/mbox.man, doc/mmdf.man, @@ -20,8 +34,6 @@ * UPDATING, globals.h, init.h, pager.c: Don't abuse $pager_context for searches, add $search_context. See #976. -2009-06-03 09:06 +0200 Rocco Rutte (9e45d5bedc79) - * pattern.c: Fix compiler warning 2009-06-02 20:25 +0200 Miroslav Lichvar (d1d0481d1ca1) diff --git a/imap/message.c b/imap/message.c index aca8023be..3d64c0d5f 100644 --- a/imap/message.c +++ b/imap/message.c @@ -843,7 +843,7 @@ int imap_copy_messages (CONTEXT* ctx, HEADER* h, char* dest, int delete) if (option (OPTCONFIRMCREATE) && mutt_yesorno (prompt, 1) < 1) { mutt_clear_error (); - break; + goto out; } if (imap_create_mailbox (idata, mbox) < 0) break;