X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=mutt_idna.c;h=e2919ff9d44b7e65c9e8b9184a08e51dde25db1b;hb=23e6291cb5d5b4cd2008403d8b628007fd75ff23;hp=4b160f2425e939e158c690cc0e0e6ffa92262ab3;hpb=7f7a0be369840b290248e5b0302beb447fa1b3cd;p=apps%2Fmadmutt.git diff --git a/mutt_idna.c b/mutt_idna.c index 4b160f2..e2919ff 100644 --- a/mutt_idna.c +++ b/mutt_idna.c @@ -12,16 +12,14 @@ #endif #include +#include #include #include #include "mutt.h" -#include "ascii.h" #include "charset.h" #include "mutt_idna.h" -#include "lib/debug.h" - /* The low-level interface we use. */ #ifndef HAVE_LIBIDN @@ -71,7 +69,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 +132,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, const char **err) { char *user = NULL, *domain = NULL; char *tmp = NULL; @@ -171,7 +168,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 +193,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;