[git commit] widen "Unicode in environment" check

Denys Vlasenko vda.linux at googlemail.com
Thu Jul 16 14:09:25 UTC 2009


commit: http://git.busybox.net/busybox/commit/?id=fff73641e473763ba47c84f5c04eb0fc0da6d64b
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master


Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 libbb/unicode.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libbb/unicode.c b/libbb/unicode.c
index 3519984..544528a 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;
-- 
1.6.3.3


More information about the busybox-cvs mailing list