]> granicus.if.org Git - neomutt/commitdiff
Add comment about "(f)orget it" choice in pgp/smime send menus.
authorKevin McCarthy <kevin@8t8.us>
Fri, 26 Jun 2015 18:38:16 +0000 (11:38 -0700)
committerKevin McCarthy <kevin@8t8.us>
Fri, 26 Jun 2015 18:38:16 +0000 (11:38 -0700)
crypt-gpgme.c
pgp.c
smime.c

index 8a39fd9ccd902a6d3d786009a1da60434be3b829..1d54ea39e79adcf4e10308cf8d45d21243975d90 100644 (file)
@@ -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 1d718861ee6762762e9c41b81c2fceddfc00a1da..0d5376c047ce979afb058b4c0e3ed74a1defa756 100644 (file)
--- 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 5ea66c9a7505181978167b979fb995314850ded6..9b52c07b66fd2b98e11db6318a00cdaa529fb925 100644 (file)
--- 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;