Use good m_ functions, because it smell like a flower, version 2.
[apps/madmutt.git] / lib-mime / rfc822address.c
index 6c11e63..190588c 100644 (file)
@@ -37,7 +37,7 @@ void rfc822_qualify(address_t *addr, const char *host)
     for (; addr; addr = addr->next) {
         if (!addr->group && addr->mailbox && !strchr(addr->mailbox, '@')) {
             p = p_new(char, m_strlen(addr->mailbox) + m_strlen(host) + 2);
-            sprintf(p, "%s@%s", addr->mailbox, host);        /* __SPRINTF_CHECKED__ */
+            sprintf(p, "%s@%s", addr->mailbox, host);
             p_delete(&addr->mailbox);
             addr->mailbox = p;
         }