X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=lib-mime%2Frfc822address.c;h=190588c5e6aa67ea447cd1845795fd4b9a888021;hb=f3cbb9f51357972f6e74244494236a41dc4d84cd;hp=6c11e631352b80012f4e5f9aec7bf67544ec2a88;hpb=055f4c1f45ad240f9095e79d3b6957db3ce29975;p=apps%2Fmadmutt.git diff --git a/lib-mime/rfc822address.c b/lib-mime/rfc822address.c index 6c11e63..190588c 100644 --- a/lib-mime/rfc822address.c +++ b/lib-mime/rfc822address.c @@ -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; }