X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_idna.c;h=4f2db0f6a63a044b8a5f8461e28a6ec2d9ca8d14;hp=91a33497d2249d5583810147d8d2d6e3e82be0b8;hb=6ebff74ad242d4c56fb7762965b19cee14fd2daa;hpb=ecaab35b973fbceb58b5ed174971c82762cc0199 diff --git a/mutt_idna.c b/mutt_idna.c index 91a3349..4f2db0f 100644 --- a/mutt_idna.c +++ b/mutt_idna.c @@ -7,21 +7,16 @@ * please see the file GPL in the top level source directory. */ -#if HAVE_CONFIG_H -# include "config.h" -#endif +#include -#include -#include -#include -#include +#ifdef HAVE_LIBIDN +#include +#endif #include "mutt.h" #include "charset.h" #include "mutt_idna.h" -#include "lib/debug.h" - /* The low-level interface we use. */ #ifndef HAVE_LIBIDN @@ -71,7 +66,6 @@ int mutt_idna_to_local (const char *in, char **out, int flags) if (!irrev && idna_to_ascii_8z (tmp, &t2, 1) != IDNA_SUCCESS) irrev = 1; if (!irrev && ascii_strcasecmp (t2, in)) { - debug_print (1, ("not reversible. in = '%s', t2 = '%s'.\n", in, t2)); irrev = 1; } @@ -135,7 +129,7 @@ static int mbox_to_udomain (const char *mbx, char **user, char **domain) return 0; } -int mutt_addrlist_to_idna (ADDRESS * a, char **err) +int mutt_addrlist_to_idna (address_t * a, char **err) { char *user = NULL, *domain = NULL; char *tmp = NULL; @@ -171,7 +165,7 @@ int mutt_addrlist_to_idna (ADDRESS * a, char **err) return 0; } -int mutt_addrlist_to_local (ADDRESS * a) +int mutt_addrlist_to_local (address_t * a) { char *user, *domain; char *tmp = NULL; @@ -196,7 +190,7 @@ int mutt_addrlist_to_local (ADDRESS * a) } /* convert just for displaying purposes */ -const char *mutt_addr_for_display (ADDRESS * a) +const char *mutt_addr_for_display (address_t * a) { static char *buff = NULL; char *tmp = NULL; @@ -248,7 +242,7 @@ void mutt_env_to_local (ENVELOPE * e) if (tag) *tag = #a; e = 1; err = NULL; \ } -int mutt_env_to_idna (ENVELOPE * env, const char **tag, const char **err) +int mutt_env_to_idna (ENVELOPE * env, const char **tag, char **err) { int e = 0;