]> diplodocus.org Git - nmh/blobdiff - uip/replsbr.c
Finished replacing mh_strcasecmp() with strcasecmp(). Removed
[nmh] / uip / replsbr.c
index a7a214bf538ad69ac735b7e420510148818d4e89..1aff02e678ca500b97f51bded26222fb7bbca81f 100644 (file)
@@ -387,8 +387,10 @@ insert (struct mailname *np)
        return 0;
 
     for (mp = &mq; mp->m_next; mp = mp->m_next) {
-       if (!mh_strcasecmp (np->m_host, mp->m_next->m_host)
-               && !mh_strcasecmp (np->m_mbox, mp->m_next->m_mbox))
+       if (!strcasecmp (np->m_host ? np->m_host : "",
+                        mp->m_next->m_host ? mp->m_next->m_host : "")  &&
+           !strcasecmp (np->m_mbox ? np->m_mbox : "",
+                        mp->m_next->m_mbox ? mp->m_next->m_mbox : ""))
            return 0;
     }
     if (!ccme && ismymbox (np))