X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_idna.c;h=2665f9c8b7da99989071d6a055db22fea51b83dd;hp=bd7551eb60d9bd0f7b615f45e244a5d3922e3c39;hb=5b5c457f669423f32f1e96ed5ff784e07b4a81da;hpb=74a2265af51ce89bca845adc1d68f273c9933c13 diff --git a/mutt_idna.c b/mutt_idna.c index bd7551e..2665f9c 100644 --- a/mutt_idna.c +++ b/mutt_idna.c @@ -18,6 +18,7 @@ #include "lib/mem.h" #include "lib/intl.h" #include "lib/str.h" +#include "lib/debug.h" /* The low-level interface we use. */ @@ -68,10 +69,7 @@ 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)) { - dprint (1, - (debugfile, - "mutt_idna_to_local: Not reversible. in = '%s', t2 = '%s'.\n", - in, t2)); + debug_print (1, ("not reversible. in = '%s', t2 = '%s'.\n", in, t2)); irrev = 1; }