X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_idna.c;h=2950ff501c2ff9044615fed97243c55d90a57e7e;hp=1419dd96c8eda6f8d939ff537e257447f3cf37e1;hb=2c56b665394c80195b976537e608b690947fcb14;hpb=d5d56308b49c3f157a17125415312f0c13e1e25b diff --git a/mutt_idna.c b/mutt_idna.c index 1419dd9..2950ff5 100644 --- a/mutt_idna.c +++ b/mutt_idna.c @@ -11,6 +11,10 @@ # include "config.h" #endif +#ifdef HAVE_LIBIDN +#include +#endif + #include #include #include @@ -20,8 +24,6 @@ #include "charset.h" #include "mutt_idna.h" -#include "lib/debug.h" - /* The low-level interface we use. */ #ifndef HAVE_LIBIDN @@ -71,7 +73,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; }