aboutsummaryrefslogtreecommitdiff
path: root/lash.c
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2001-03-27 16:35:16 +0000
committerMark Whitley <markw@lineo.com>2001-03-27 16:35:16 +0000
commit1c6581a8659219c09bc33ae45b81d3fd547c3d08 (patch)
tree9d234ba0c9e363b5b0a529ab0357b28b7c10aafc /lash.c
parentaf633757d3a7c2830851446278161618141f2e54 (diff)
downloadbusybox-1c6581a8659219c09bc33ae45b81d3fd547c3d08.tar.gz
Applied patch from Vladimir N. Oleynik to add locale support to the shell per
bug report from Ralph Jones.
Diffstat (limited to 'lash.c')
-rw-r--r--lash.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lash.c b/lash.c
index e33fd369c..ca0d4bb43 100644
--- a/lash.c
+++ b/lash.c
@@ -64,6 +64,7 @@
#include <sys/wait.h>
#include <unistd.h>
#include <getopt.h>
+#include <locale.h>
//#define BB_FEATURE_SH_WORDEXP
@@ -446,6 +447,11 @@ static int builtin_export(struct child_prog *child)
else if (strncmp(v, "PS2=", 4)==0)
PS2 = getenv("PS2");
#endif
+ if(strncmp(v, "LC_ALL=", 7)==0)
+ setlocale(LC_ALL, getenv("LC_ALL"));
+ if(strncmp(v, "LC_CTYPE=", 7)==0)
+ setlocale(LC_CTYPE, getenv("LC_CTYPE"));
+
return (res);
}