loadlocale: don't casecmp digits
strcmp is sufficient here Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
d72ea86d41
commit
12a94daf5f
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue