remove yet anoter round of str_* functions, replaced with their inlineable
[apps/madmutt.git] / getdomain.c
index 1ffd40c..d58bb69 100644 (file)
@@ -55,8 +55,7 @@ int getdnsdomainname (char *s, size_t l)
     p = tmp;
     while (ISSPACE (*p))
       p++;
-    if (str_ncmp ("domain", p, 6) == 0
-        || str_ncmp ("search", p, 6) == 0) {
+    if (m_strncmp("domain", p, 6) == 0 || m_strncmp("search", p, 6) == 0) {
       p += 6;
 
       for (q = strtok (p, " \t\n"); q; q = strtok (NULL, " \t\n"))