X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=crypt-mod-smime-gpgme.c;h=31e882f396d5f96ed554d5c9a9fafa1b368ebfc1;hp=0e0d1123308800225309d7c5943e2cfd1677bf3a;hb=4761fa78a6dfc9437caa6e6e0aac806e50e01c83;hpb=c3e57678c8be193fc137854020f3a90887be97c9 diff --git a/crypt-mod-smime-gpgme.c b/crypt-mod-smime-gpgme.c index 0e0d112..31e882f 100644 --- a/crypt-mod-smime-gpgme.c +++ b/crypt-mod-smime-gpgme.c @@ -17,7 +17,7 @@ #ifdef CRYPT_BACKEND_GPGME -#include "crypt-mod.h" +#include #include "crypt-gpgme.h" static void crypt_mod_smime_init (void) @@ -42,13 +42,13 @@ static int crypt_mod_smime_decrypt_mime (FILE * a, FILE ** b, BODY * c, return smime_gpgme_decrypt_mime (a, b, c, d); } -static void crypt_mod_smime_application_handler (BODY * m, STATE * s) +static int crypt_mod_smime_application_handler (BODY * m, STATE * s) { - smime_gpgme_application_handler (m, s); + return smime_gpgme_application_handler (m, s); } -static char *crypt_mod_smime_findkeys (ADDRESS * to, ADDRESS * cc, - ADDRESS * bcc) +static char *crypt_mod_smime_findkeys (address_t * to, address_t * cc, + address_t * bcc) { return smime_gpgme_findkeys (to, cc, bcc); }