X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_idna.c;h=c728e5e57f1e1867cd0a1a5709b4aa86f512ff49;hp=1419dd96c8eda6f8d939ff537e257447f3cf37e1;hb=bc45345ba77e08ee3dc159ba0e04bc654f191cd3;hpb=d5d56308b49c3f157a17125415312f0c13e1e25b diff --git a/mutt_idna.c b/mutt_idna.c index 1419dd9..c728e5e 100644 --- a/mutt_idna.c +++ b/mutt_idna.c @@ -7,26 +7,21 @@ * 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 -int mutt_idna_to_local (const char *in, char **out, int flags) +int mutt_idna_to_local (const char *in, char **out, int flags __attribute__ ((unused))) { *out = m_strdup(in); return 1; @@ -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_t * a, const char **err) +int mutt_addrlist_to_idna (address_t * a, char **err) { char *user = NULL, *domain = 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;