X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=cryptglue.c;h=d76fa4468b4fc2d577dcc1043813bc5e76cc2de0;hp=402ad6e5552459d28d624d0423c9cfff144823a3;hb=0ac011f8eb41bab7808881ebf9802b4eb252fe3b;hpb=f5b0e714a215eddd4d9f8084b434b713f0a580b4 diff --git a/cryptglue.c b/cryptglue.c index 402ad6e..d76fa44 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" @@ -36,13 +37,8 @@ */ -#ifdef CRYPT_BACKEND_CLASSIC_PGP extern struct crypt_module_specs crypt_mod_pgp_classic; -#endif - -#ifdef CRYPT_BACKEND_CLASSIC_SMIME extern struct crypt_module_specs crypt_mod_smime_classic; -#endif #ifdef CRYPT_BACKEND_GPGME extern struct crypt_module_specs crypt_mod_pgp_gpgme; @@ -51,7 +47,6 @@ extern struct crypt_module_specs crypt_mod_smime_gpgme; void crypt_init (void) { -#ifdef CRYPT_BACKEND_CLASSIC_PGP if ( #ifdef CRYPT_BACKEND_GPGME (!option (OPTCRYPTUSEGPGME)) @@ -60,9 +55,7 @@ void crypt_init (void) #endif ) crypto_module_register (&crypt_mod_pgp_classic); -#endif -#ifdef CRYPT_BACKEND_CLASSIC_SMIME if ( #ifdef CRYPT_BACKEND_GPGME (!option (OPTCRYPTUSEGPGME)) @@ -71,7 +64,6 @@ void crypt_init (void) #endif ) crypto_module_register (&crypt_mod_smime_classic); -#endif if (option (OPTCRYPTUSEGPGME)) { #ifdef CRYPT_BACKEND_GPGME @@ -98,11 +90,11 @@ void crypt_init (void) /* Show a message that a backend will be invoked. */ void crypt_invoke_message (int type) { - if ((WithCrypto & APPLICATION_PGP) && (type & APPLICATION_PGP)) { + if (type & APPLICATION_PGP) { mutt_message _("Invoking PGP..."); } - else if ((WithCrypto & APPLICATION_SMIME) && (type & APPLICATION_SMIME)) { - mutt_message _("Invoking SMIME..."); + else if (type & APPLICATION_SMIME) { + mutt_message _("Invoking S/MIME..."); } } @@ -157,7 +149,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 +185,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 +314,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);