X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fpost.c;h=96120c1e6791ad82fd0d13688873a51d1803fb4b;hb=8a1006b457cdc27c40b9c928dc9fb5086444f04b;hp=f880152a2b3182d1595247112133a41d6b292b1b;hpb=389877bae1fe1a9f7259b8979f6a930744d90fab;p=mmh diff --git a/uip/post.c b/uip/post.c index f880152..96120c1 100644 --- a/uip/post.c +++ b/uip/post.c @@ -946,7 +946,7 @@ get_header (char *header, struct headers *table) struct headers *h; for (h = table; h->value; h++) - if (!strcasecmp (header, h->value)) + if (!mh_strcasecmp (header, h->value)) return (h - table); return NOTOK; @@ -1048,8 +1048,8 @@ insert (struct mailname *np) : &netaddrs; mp->m_next; mp = mp->m_next) - if (!strcasecmp (np->m_host, mp->m_next->m_host) - && !strcasecmp (np->m_mbox, mp->m_next->m_mbox) + if (!mh_strcasecmp (np->m_host, mp->m_next->m_host) + && !mh_strcasecmp (np->m_mbox, mp->m_next->m_mbox) && np->m_bcc == mp->m_next->m_bcc) return 0;