X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_idna.c;h=4c9dc50b7a5b4f01fc4ceb968eb9d15a3c55d0ff;hp=c5f791e24d85324febf0e647fbd3e75ec42ecab7;hb=e3c03b4252d4d86369538dd2fab3f023639dfb35;hpb=a742b680bdba8cb47d2b81ab3397cdbec7ed5b69 diff --git a/mutt_idna.c b/mutt_idna.c index c5f791e..4c9dc50 100644 --- a/mutt_idna.c +++ b/mutt_idna.c @@ -7,43 +7,21 @@ * please see the file GPL in the top level source directory. */ -#if HAVE_CONFIG_H -# include "config.h" -#endif +#include #ifdef HAVE_LIBIDN #include #endif -#include -#include -#include -#include - #include "mutt.h" #include "charset.h" #include "mutt_idna.h" /* The low-level interface we use. */ -#ifndef HAVE_LIBIDN - -int mutt_idna_to_local (const char *in, char **out, int flags) -{ - *out = m_strdup(in); - return 1; -} - -int mutt_local_to_idna (const char *in, char **out) -{ - *out = m_strdup(in); - return 0; -} - -#else - -int mutt_idna_to_local (const char *in, char **out, int flags) +static int mutt_idna_to_local (const char *in, char **out, int flags) { +#ifdef HAVE_LIBIDN *out = NULL; if (!option (OPTUSEIDN)) @@ -55,7 +33,7 @@ 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", Charset, M_ICONV_HOOK_TO) == -1) + if (mutt_convert_string (out, "utf-8", mod_cset.charset, M_ICONV_HOOK_TO) == -1) goto notrans; /* @@ -68,7 +46,7 @@ int mutt_idna_to_local (const char *in, char **out, int flags) char *t2 = NULL; char *tmp = m_strdup(*out); - if (mutt_convert_string (&tmp, 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; @@ -87,12 +65,14 @@ int mutt_idna_to_local (const char *in, char **out, int flags) notrans: p_delete(out); +#endif *out = m_strdup(in); return 1; } -int mutt_local_to_idna (const char *in, char **out) +static int mutt_local_to_idna (const char *in, char **out) { +#ifdef HAVE_LIBIDN int rv = 0; char *tmp = m_strdup(in); @@ -103,7 +83,7 @@ int mutt_local_to_idna (const char *in, char **out) return -1; } - if (mutt_convert_string (&tmp, 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; @@ -114,10 +94,11 @@ int mutt_local_to_idna (const char *in, char **out) *out = m_strdup(in); } return rv; -} - +#else + *out = m_strdup(in); + return 0; #endif - +} /* higher level functions */ @@ -158,7 +139,7 @@ int mutt_addrlist_to_idna (address_t * a, char **err) } else { p_realloc(&a->mailbox, m_strlen(user) + m_strlen(tmp) + 2); - sprintf (a->mailbox, "%s@%s", NONULL (user), NONULL (tmp)); /* __SPRINTF_CHECKED__ */ + sprintf(a->mailbox, "%s@%s", NONULL (user), NONULL (tmp)); } p_delete(&domain); @@ -185,7 +166,7 @@ int mutt_addrlist_to_local (address_t * a) if (mutt_idna_to_local (domain, &tmp, 0) == 0) { p_realloc(&a->mailbox, m_strlen(user) + m_strlen(tmp) + 2); - sprintf (a->mailbox, "%s@%s", NONULL (user), NONULL (tmp)); /* __SPRINTF_CHECKED__ */ + sprintf(a->mailbox, "%s@%s", NONULL (user), NONULL (tmp)); } p_delete(&domain); @@ -219,7 +200,7 @@ const char *mutt_addr_for_display (address_t * a) } p_realloc(&buff, m_strlen(tmp) + m_strlen(user) + 2); - sprintf (buff, "%s@%s", NONULL (user), NONULL (tmp)); /* __SPRINTF_CHECKED__ */ + sprintf(buff, "%s@%s", NONULL (user), NONULL (tmp)); p_delete(&tmp); p_delete(&user); p_delete(&domain);