X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_idna.c;h=918aa26a367e67d84442c2d5520011185c49358a;hp=84e470d13737593314971e3f43e79d8c125405d3;hb=98f62b5fcbd680fd5214ee85e1635b84322cbdd1;hpb=f308b90cecbb9570ab072bd90b04bd58cd9d6274 diff --git a/mutt_idna.c b/mutt_idna.c index 84e470d..918aa26 100644 --- a/mutt_idna.c +++ b/mutt_idna.c @@ -19,7 +19,7 @@ /* The low-level interface we use. */ -static int mutt_idna_to_local (const char *in, char **out, int flags) +static int mutt_idna_to_local(const char *in, char **out, bool nonreverseok) { #ifdef HAVE_LIBIDN *out = NULL; @@ -33,7 +33,7 @@ static int mutt_idna_to_local (const char *in, char **out, int flags) /* Is this the right function? Interesting effects with some bad identifiers! */ if (idna_to_unicode_8z8z (in, out, 1) != IDNA_SUCCESS) goto notrans; - if (mutt_convert_string (out, "utf-8", MCharset.charset, M_ICONV_HOOK_TO) == -1) + if (mutt_convert_string (out, "utf-8", mod_cset.charset, M_ICONV_HOOK_TO) == -1) goto notrans; /* @@ -41,12 +41,12 @@ static int mutt_idna_to_local (const char *in, char **out, int flags) * domain name. */ - if ((flags & MI_MAY_BE_IRREVERSIBLE) == 0) { + if (nonreverseok) { int irrev = 0; char *t2 = NULL; char *tmp = m_strdup(*out); - if (mutt_convert_string (&tmp, MCharset.charset, "utf-8", M_ICONV_HOOK_FROM) == -1) + if (mutt_convert_string (&tmp, mod_cset.charset, "utf-8", M_ICONV_HOOK_FROM) == -1) irrev = 1; if (!irrev && idna_to_ascii_8z (tmp, &t2, 1) != IDNA_SUCCESS) irrev = 1; @@ -83,7 +83,7 @@ static int mutt_local_to_idna (const char *in, char **out) return -1; } - if (mutt_convert_string (&tmp, MCharset.charset, "utf-8", M_ICONV_HOOK_FROM) == -1) + if (mutt_convert_string (&tmp, mod_cset.charset, "utf-8", M_ICONV_HOOK_FROM) == -1) rv = -1; if (!rv && idna_to_ascii_8z (tmp, out, 1) != IDNA_SUCCESS) rv = -2; @@ -164,7 +164,7 @@ int mutt_addrlist_to_local (address_t * a) if (mbox_to_udomain (a->mailbox, &user, &domain) == -1) continue; - if (mutt_idna_to_local (domain, &tmp, 0) == 0) { + if (mutt_idna_to_local(domain, &tmp, false) == 0) { p_realloc(&a->mailbox, m_strlen(user) + m_strlen(tmp) + 2); sprintf(a->mailbox, "%s@%s", NONULL (user), NONULL (tmp)); } @@ -192,7 +192,7 @@ const char *mutt_addr_for_display (address_t * a) if (mbox_to_udomain (a->mailbox, &user, &domain) != 0) return a->mailbox; - if (mutt_idna_to_local (domain, &tmp, MI_MAY_BE_IRREVERSIBLE) != 0) { + if (mutt_idna_to_local (domain, &tmp, true) != 0) { p_delete(&user); p_delete(&domain); p_delete(&tmp);