Skip to content

Commit

Permalink
Add comment about "(f)orget it" choice in pgp/smime send menus.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin8t8 authored and karelzak committed Jul 17, 2015
1 parent 2f78443 commit 9964c3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crypt-gpgme.c
Original file line number Diff line number Diff line change
Expand Up @@ -4754,7 +4754,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;
Expand Down
2 changes: 1 addition & 1 deletion pgp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion smime.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9964c3d

Please sign in to comment.