]> git.lizzy.rs Git - linenoise.git/blobdiff - linenoise.c
Avoid use of strcasecmp()
[linenoise.git] / linenoise.c
index 230711b5b8c8bdd24d1df367be8bd0743aae77e6..7254928a9c0f44475a04707549dd6c947cba949f 100644 (file)
@@ -209,7 +209,7 @@ static int isUnsupportedTerm(void) {
     if (term) {
         int j;
         for (j = 0; unsupported_term[j]; j++) {
-            if (strcasecmp(term, unsupported_term[j]) == 0) {
+            if (strcmp(term, unsupported_term[j]) == 0) {
                 return 1;
             }
         }