summaryrefslogtreecommitdiffstats
path: root/crypt-mod-pgp-gpgme.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2019-10-20 14:06:24 +0800
committerKevin McCarthy <kevin@8t8.us>2019-10-20 15:08:06 +0800
commit15f89f8e6b4a2388065c09665813e95c9464db3e (patch)
tree766756bb921b1d38d75340eca848fd8521413ffd /crypt-mod-pgp-gpgme.c
parente3408a0032d0f25d503ca6dfcdfcd161ad5bcd74 (diff)
Remove make_key_attachment parameter.
The parameter is not actually used anywhere. The next commit will convert the classic pgp implementation to use the buffer pool. This change will simplify the logic.
Diffstat (limited to 'crypt-mod-pgp-gpgme.c')
-rw-r--r--crypt-mod-pgp-gpgme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypt-mod-pgp-gpgme.c b/crypt-mod-pgp-gpgme.c
index b10a6e0e..b2eb6377 100644
--- a/crypt-mod-pgp-gpgme.c
+++ b/crypt-mod-pgp-gpgme.c
@@ -95,9 +95,9 @@ static BODY *crypt_mod_pgp_encrypt_message (BODY *a, char *keylist, int sign)
return pgp_gpgme_encrypt_message (a, keylist, sign);
}
-static BODY *crypt_mod_pgp_make_key_attachment (char *tempf)
+static BODY *crypt_mod_pgp_make_key_attachment (void)
{
- return pgp_gpgme_make_key_attachment (tempf);
+ return pgp_gpgme_make_key_attachment ();
}
static void crypt_mod_pgp_set_sender (const char *sender)