X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=cryptglue.c;h=d83b6122eb4cefc2ba71945b3bd50d4458c8fd8d;hp=d73ddcd27fa63a84ca705579f8477fdb49d63a0c;hb=69cbbd6ba2aec89f81ecf169e21b7bc4ec5bce90;hpb=ec6466f47886accf8a4f67ae54da36bdf97dad21 diff --git a/cryptglue.c b/cryptglue.c index d73ddcd..d83b612 100644 --- a/cryptglue.c +++ b/cryptglue.c @@ -23,10 +23,11 @@ # include "config.h" #endif +#include + #include "mutt.h" #include "mutt_crypt.h" -#include "lib/intl.h" #include "crypt-mod.h" @@ -157,7 +158,7 @@ int crypt_pgp_encrypted_handler (BODY * a, STATE * s) } /* fixme: needs documentation. */ -void crypt_pgp_invoke_getkeys (ADDRESS * addr) +void crypt_pgp_invoke_getkeys (address_t * addr) { if (CRYPT_MOD_CALL_CHECK (PGP, pgp_invoke_getkeys)) (CRYPT_MOD_CALL (PGP, pgp_invoke_getkeys)) (addr); @@ -193,7 +194,7 @@ BODY *crypt_pgp_make_key_attachment (char *tempf) /* This routine attempts to find the keyids of the recipients of a message. It returns NULL if any of the keys can not be found. */ -char *crypt_pgp_findkeys (ADDRESS * to, ADDRESS * cc, ADDRESS * bcc) +char *crypt_pgp_findkeys (address_t * to, address_t * cc, address_t * bcc) { if (CRYPT_MOD_CALL_CHECK (PGP, findkeys)) return (CRYPT_MOD_CALL (PGP, findkeys)) (to, cc, bcc); @@ -322,7 +323,7 @@ int crypt_smime_verify_sender (HEADER * h) /* This routine attempts to find the keyids of the recipients of a message. It returns NULL if any of the keys can not be found. */ -char *crypt_smime_findkeys (ADDRESS * to, ADDRESS * cc, ADDRESS * bcc) +char *crypt_smime_findkeys (address_t * to, address_t * cc, address_t * bcc) { if (CRYPT_MOD_CALL_CHECK (SMIME, findkeys)) return (CRYPT_MOD_CALL (SMIME, findkeys)) (to, cc, bcc);