summaryrefslogtreecommitdiffstats
path: root/crypt-mod-pgp-gpgme.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2015-03-30 15:45:49 -0700
committerKevin McCarthy <kevin@8t8.us>2015-03-30 15:45:49 -0700
commit4615a829c7dd4a2ba64683bae4c058b098f5d30a (patch)
tree710e198c202406f52333b0bc78d537be16924670 /crypt-mod-pgp-gpgme.c
parentecbba07c51d92c7af5b97ff49b50267ef00074d6 (diff)
Introduce an oppenc_mode parameter
It's added to the parameter lists through the call stack down to the find_keys calls. No functionality is implemented yet. This patch is separated just to keep other patches more readable.
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 a2b799f5..948585c4 100644
--- a/crypt-mod-pgp-gpgme.c
+++ b/crypt-mod-pgp-gpgme.c
@@ -70,9 +70,9 @@ static void crypt_mod_pgp_invoke_import (const char *fname)
pgp_gpgme_invoke_import (fname);
}
-static char *crypt_mod_pgp_findkeys (ADDRESS *adrlist)
+static char *crypt_mod_pgp_findkeys (ADDRESS *adrlist, int oppenc_mode)
{
- return pgp_gpgme_findkeys (adrlist);
+ return pgp_gpgme_findkeys (adrlist, oppenc_mode);
}
static BODY *crypt_mod_pgp_sign_message (BODY *a)