X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_idna.c;h=1a9bd8b279e1b65239db00b4a080d1808a5eef44;hp=96d33d2f571a911290826eee5f80a797899ae39c;hb=7d29626ce4e1fa932c6349c7253e6f774df069fc;hpb=617e7d83d14e14e6a520a48e75437211b16c8834 diff --git a/mutt_idna.c b/mutt_idna.c index 96d33d2..1a9bd8b 100644 --- a/mutt_idna.c +++ b/mutt_idna.c @@ -7,34 +7,29 @@ * please see the file GPL in the top level source directory. */ -#if HAVE_CONFIG_H -# include "config.h" -#endif +#include -#include +#ifdef HAVE_LIBIDN +#include +#endif #include "mutt.h" -#include "ascii.h" #include "charset.h" #include "mutt_idna.h" -#include "lib/intl.h" -#include "lib/str.h" -#include "lib/debug.h" - /* The low-level interface we use. */ #ifndef HAVE_LIBIDN -int mutt_idna_to_local (const char *in, char **out, int flags) +int mutt_idna_to_local (const char *in, char **out, int flags __attribute__ ((unused))) { - *out = str_dup (in); + *out = m_strdup(in); return 1; } int mutt_local_to_idna (const char *in, char **out) { - *out = str_dup (in); + *out = m_strdup(in); return 0; } @@ -64,14 +59,13 @@ int mutt_idna_to_local (const char *in, char **out, int flags) if ((flags & MI_MAY_BE_IRREVERSIBLE) == 0) { int irrev = 0; char *t2 = NULL; - char *tmp = str_dup (*out); + char *tmp = m_strdup(*out); if (mutt_convert_string (&tmp, Charset, "utf-8", M_ICONV_HOOK_FROM) == -1) irrev = 1; 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; } @@ -86,14 +80,14 @@ int mutt_idna_to_local (const char *in, char **out, int flags) notrans: p_delete(out); - *out = str_dup (in); + *out = m_strdup(in); return 1; } int mutt_local_to_idna (const char *in, char **out) { int rv = 0; - char *tmp = str_dup (in); + char *tmp = m_strdup(in); *out = NULL; @@ -110,7 +104,7 @@ int mutt_local_to_idna (const char *in, char **out) p_delete(&tmp); if (rv < 0) { p_delete(out); - *out = str_dup (in); + *out = m_strdup(in); } return rv; } @@ -131,11 +125,11 @@ static int mbox_to_udomain (const char *mbx, char **user, char **domain) if (!p || !p[1]) return -1; *user = p_dupstr(mbx, p - mbx); - *domain = str_dup (p + 1); + *domain = m_strdup(p + 1); return 0; } -int mutt_addrlist_to_idna (ADDRESS * a, char **err) +int mutt_addrlist_to_idna (address_t * a, char **err) { char *user = NULL, *domain = NULL; char *tmp = NULL; @@ -153,11 +147,11 @@ int mutt_addrlist_to_idna (ADDRESS * a, char **err) if (mutt_local_to_idna (domain, &tmp) < 0) { e = 1; if (err) - *err = str_dup (domain); + *err = m_strdup(domain); } else { - p_realloc(&a->mailbox, str_len(user) + str_len(tmp) + 2); - sprintf (a->mailbox, "%s@%s", NONULL (user), NONULL (tmp)); /* __SPRINTF_CHECKED__ */ + p_realloc(&a->mailbox, m_strlen(user) + m_strlen(tmp) + 2); + sprintf(a->mailbox, "%s@%s", NONULL (user), NONULL (tmp)); } p_delete(&domain); @@ -171,7 +165,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; @@ -183,8 +177,8 @@ int mutt_addrlist_to_local (ADDRESS * a) continue; if (mutt_idna_to_local (domain, &tmp, 0) == 0) { - p_realloc(&a->mailbox, str_len(user) + str_len(tmp) + 2); - sprintf (a->mailbox, "%s@%s", NONULL (user), NONULL (tmp)); /* __SPRINTF_CHECKED__ */ + p_realloc(&a->mailbox, m_strlen(user) + m_strlen(tmp) + 2); + sprintf(a->mailbox, "%s@%s", NONULL (user), NONULL (tmp)); } p_delete(&domain); @@ -196,7 +190,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; @@ -217,8 +211,8 @@ const char *mutt_addr_for_display (ADDRESS * a) return a->mailbox; } - p_realloc(&buff, str_len(tmp) + str_len(user) + 2); - sprintf (buff, "%s@%s", NONULL (user), NONULL (tmp)); /* __SPRINTF_CHECKED__ */ + p_realloc(&buff, m_strlen(tmp) + m_strlen(user) + 2); + sprintf(buff, "%s@%s", NONULL (user), NONULL (tmp)); p_delete(&tmp); p_delete(&user); p_delete(&domain); @@ -248,7 +242,7 @@ void mutt_env_to_local (ENVELOPE * e) if (tag) *tag = #a; e = 1; err = NULL; \ } -int mutt_env_to_idna (ENVELOPE * env, const char **tag, const char **err) +int mutt_env_to_idna (ENVELOPE * env, const char **tag, char **err) { int e = 0;