From c9b6f58349d2d0bf2654a851b704cbe53ca6d367 Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Sun, 10 Apr 2016 17:28:20 -0500 Subject: [PATCH] Name the fallback strncasecmp properly [ci skip] --- librb/src/tools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {