summaryrefslogtreecommitdiffstats
path: root/mutt_crypt.h
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2017-03-26 18:31:43 -0700
committerKevin McCarthy <kevin@8t8.us>2017-03-26 18:31:43 -0700
commit1a956977d926bd9132479e97e62065baea7a0d90 (patch)
tree895733c5e32efaf8d87aaaf380e776531acfe20c /mutt_crypt.h
parent95070a7016d7334ac1d4e664e42afcfdcd96dc1f (diff)
Remove redraw parameter from crypt send_menus.
The parameter was used to notify the caller if the sign (a)s menu was invoked, which displayed the key selection menu. This is no longer necessary with the menu stack pop operation.
Diffstat (limited to 'mutt_crypt.h')
-rw-r--r--mutt_crypt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mutt_crypt.h b/mutt_crypt.h
index 131daccd..07c406d3 100644
--- a/mutt_crypt.h
+++ b/mutt_crypt.h
@@ -239,7 +239,7 @@ BODY *crypt_pgp_encrypt_message (BODY *a, char *keylist, int sign);
/* Invoke the PGP command to import a key. */
void crypt_pgp_invoke_import (const char *fname);
-int crypt_pgp_send_menu (HEADER *msg, int *redraw);
+int crypt_pgp_send_menu (HEADER *msg);
/* fixme: needs documentation */
int crypt_pgp_verify_one (BODY *sigbdy, STATE *s, const char *tempf);
@@ -289,7 +289,7 @@ BODY *crypt_smime_build_smime_entity (BODY *a, char *certlist);
/* Add a certificate and update index file (externally). */
void crypt_smime_invoke_import (char *infile, char *mailbox);
-int crypt_smime_send_menu (HEADER *msg, int *redraw);
+int crypt_smime_send_menu (HEADER *msg);
void crypt_smime_set_sender (const char *sender);