From: Elizabeth Myers Date: Sun, 10 Apr 2016 22:28:20 +0000 (-0500) Subject: Name the fallback strncasecmp properly [ci skip] X-Git-Url: https://jfr.im/git/solanum.git/commitdiff_plain/c9b6f58349d2d0bf2654a851b704cbe53ca6d367 Name the fallback strncasecmp properly [ci skip] --- diff --git a/librb/src/tools.c b/librb/src/tools.c index 4f4b45cc..d6a1e933 100644 --- a/librb/src/tools.c +++ b/librb/src/tools.c @@ -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) {