From: Kevin McCarthy Date: Fri, 26 Jun 2015 18:38:16 +0000 (-0700) Subject: Add comment about "(f)orget it" choice in pgp/smime send menus. X-Git-Tag: neomutt-20160307~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=80704a1be798b5ea8ec3986b23b556d9d4dfd924;p=neomutt Add comment about "(f)orget it" choice in pgp/smime send menus. --- diff --git a/crypt-gpgme.c b/crypt-gpgme.c index 8a39fd9cc..1d54ea39e 100644 --- a/crypt-gpgme.c +++ b/crypt-gpgme.c @@ -4747,7 +4747,7 @@ static int gpgme_send_menu (HEADER *msg, int *redraw, int is_smime) crypt_opportunistic_encrypt (msg); break; - case 'f': /* (f)orget it */ + case 'f': /* (f)orget it: kept for backward compatibility. */ case 'c': /* (c)lear */ msg->security &= ~(ENCRYPT | SIGN); break; diff --git a/pgp.c b/pgp.c index 1d718861e..0d5376c04 100644 --- a/pgp.c +++ b/pgp.c @@ -1751,7 +1751,7 @@ int pgp_send_menu (HEADER *msg, int *redraw) msg->security |= (ENCRYPT | SIGN); break; - case 'f': /* (f)orget it */ + case 'f': /* (f)orget it: kept for backward compatibility. */ case 'c': /* (c)lear */ msg->security &= ~(ENCRYPT | SIGN); break; diff --git a/smime.c b/smime.c index 5ea66c9a7..9b52c07b6 100644 --- a/smime.c +++ b/smime.c @@ -2192,7 +2192,7 @@ int smime_send_menu (HEADER *msg, int *redraw) msg->security |= (ENCRYPT | SIGN); break; - case 'f': /* (f)orget it */ + case 'f': /* (f)orget it: kept for backward compatibility. */ case 'c': /* (c)lear */ msg->security &= ~(ENCRYPT | SIGN); break;