Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-07-16 18:09:25 +0400
committerDenys Vlasenko <vda.linux@googlemail.com>2009-07-16 18:09:25 +0400
commitfff73641e473763ba47c84f5c04eb0fc0da6d64b (patch)
tree7cefa71eb6174866108ebe8cde5c7babadd9ee07 /libbb/unicode.c
parent9531f7dad708b9130142aaaac6ed095f23ed3c35 (diff)
widen "Unicode in environment" check
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/unicode.c')
-rw-r--r--libbb/unicode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/unicode.c b/libbb/unicode.c
index 3519984d9..544528acd 100644
--- a/libbb/unicode.c
+++ b/libbb/unicode.c
@@ -39,7 +39,7 @@ void FAST_FUNC check_unicode_in_env(void)
unicode_is_enabled = 1;
lang = getenv("LANG");
- if (!lang || !strstr(lang, ".utf8"))
+ if (!lang || !(strstr(lang, ".utf") || strstr(lang, ".UTF")))
return;
unicode_is_enabled = 2;