Use m_strncmp instead of strncmp
[apps/madmutt.git] / muttlib.c
index 65007ae..695d08c 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
@@ -198,7 +198,7 @@ void mutt_pretty_mailbox (char *s)
   /* if s is an url, only collapse path component */
   if (scheme != U_UNKNOWN) {
     p = strchr (s, ':') + 1;
-    if (!strncmp (p, "//", 2))
+    if (!m_strncmp (p, "//", 2))
       q = strchr (p + 2, '/');
     if (!q)
       q = strchr (p, '\0');