--- mutt-1.4/compose.c Thu Oct 11 16:08:31 2001 +++ mutt-1.4.new/compose.c Mon Oct 28 19:52:12 2002 @@ -130,15 +130,15 @@ pgp_key_t *p; char input_signas[SHORT_STRING]; - switch (mutt_multi_choice (_("(e)ncrypt, (s)ign, sign (a)s, (b)oth, or (f)orget it? "), - _("esabf"))) + switch (mutt_multi_choice (_("(e)ncrypt, (s)ign, sign (a)s, (b)oth, or (c)lear? "), + _("esabc"))) { case 1: /* (e)ncrypt */ - bits |= PGPENCRYPT; + bits = PGPENCRYPT; break; case 2: /* (s)ign */ - bits |= PGPSIGN; + bits = PGPSIGN; break; case 3: /* sign (a)s */ @@ -167,7 +167,7 @@ bits = PGPENCRYPT | PGPSIGN; break; - case 5: /* (f)orget it */ + case 5: /* (c)lear */ bits = 0; break; } --- mutt-1.4/PATCHES Tue Apr 2 13:48:57 2002 +++ mutt-1.4.new/PATCHES Fri Nov 8 14:46:44 2002 @@ -0,0 +1 @@ +patch-1.4.0.ddm.crypt-menu.1