]> diplodocus.org Git - nmh/blobdiff - sbr/strcasecmp.c
Document argsplit changes in mh-profile man page.
[nmh] / sbr / strcasecmp.c
index 04aad7d31f904db9b7cbaca402ae6ef1e3af73b3..c48c9d4ca1fc0824be8e5cb6b59ecaa70e2aacdf 100644 (file)
@@ -24,9 +24,9 @@ mh_strcasecmp (const char *s1, const char *s2)
     us2 = (const unsigned char *) s2;
 
     if (!us1)
-       us1 = "";
+       us1 = (const unsigned char *) "";
     if (!us2)
-       us2 = "";
+       us2 = (const unsigned char *) "";
  
     while (tolower(*us1) == tolower(*us2++)) 
        if (*us1++ == '\0')