From: René Clerc Date: Tue, 15 Apr 2003 13:17:05 +0000 (+0000) Subject: Fix two more cases in which ctrl-G is interpreted as M_YES. X-Git-Tag: pre-type-punning-patch~85 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f94010b900c7e7380566a1ae1f82447d5e2c1447;p=mutt Fix two more cases in which ctrl-G is interpreted as M_YES. --- diff --git a/compose.c b/compose.c index 451fdd2f..8160b262 100644 --- a/compose.c +++ b/compose.c @@ -1328,7 +1328,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */ && msg->security & APPLICATION_SMIME) { if (mutt_yesorno (_("S/MIME already selected. Clear & continue ? "), - M_YES) == M_NO) + M_YES) != M_YES) { mutt_clear_error (); break; @@ -1353,7 +1353,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */ && msg->security & APPLICATION_PGP) { if (mutt_yesorno (_("PGP already selected. Clear & continue ? "), - M_YES) == M_NO) + M_YES) != M_YES) { mutt_clear_error (); break;