]> jfr.im git - solanum.git/commitdiff
Name the fallback strncasecmp properly [ci skip]
authorElizabeth Myers <redacted>
Sun, 10 Apr 2016 22:28:20 +0000 (17:28 -0500)
committerElizabeth Myers <redacted>
Sun, 10 Apr 2016 22:28:20 +0000 (17:28 -0500)
librb/src/tools.c

index 4f4b45ccb390203c45dd366d4a75c001cccf6ccb..d6a1e93399c28e612723eda0db300e5a9f37872b 100644 (file)
@@ -174,7 +174,7 @@ rb_strcasecmp(const char *s1, const char *s2)
 #ifndef _WIN32
 /* Fallback taken from FreeBSD. --Elizafox */
 int
-strncasecmp(const char *s1, const char *s2, size_t n)
+rb_strncasecmp(const char *s1, const char *s2, size_t n)
 {
        if (n != 0)
        {