X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_idna.c;h=1a9bd8b279e1b65239db00b4a080d1808a5eef44;hp=c5f791e24d85324febf0e647fbd3e75ec42ecab7;hb=7d29626ce4e1fa932c6349c7253e6f774df069fc;hpb=a742b680bdba8cb47d2b81ab3397cdbec7ed5b69 diff --git a/mutt_idna.c b/mutt_idna.c index c5f791e..1a9bd8b 100644 --- a/mutt_idna.c +++ b/mutt_idna.c @@ -7,19 +7,12 @@ * 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" @@ -28,7 +21,7 @@ #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 = m_strdup(in); return 1; @@ -158,7 +151,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 +178,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 +212,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);