diff options
-rw-r--r-- | newlib/libc/locale/locale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/locale/locale.c b/newlib/libc/locale/locale.c index 7b1b0662c..2c452ba98 100644 --- a/newlib/libc/locale/locale.c +++ b/newlib/libc/locale/locale.c @@ -857,7 +857,7 @@ restart: c = charset + 3; if (*c == '-') ++c; - if (strcasecmp (c, "620")) + if (strcmp (c, "620")) FAIL; val = 874; strcpy (charset, "CP874"); |