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:
authorEric Andersen <andersen@codepoet.org>2001-05-13 04:33:16 +0400
committerEric Andersen <andersen@codepoet.org>2001-05-13 04:33:16 +0400
commit4819c3d477e83b846649220fc96534c9bb93d642 (patch)
tree7f77150cefbe61ee6615634e09bfb35f3f4ec347 /busybox.c
parent1f3b9f297e948b70a82b82919d0ef4d4e1b61d7f (diff)
Make the locale stuff only do the getpid==1 check if BB_INIT is defined
Diffstat (limited to 'busybox.c')
-rw-r--r--busybox.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/busybox.c b/busybox.c
index 41b6069ed..9cc884854 100644
--- a/busybox.c
+++ b/busybox.c
@@ -82,9 +82,13 @@ int main(int argc, char **argv)
}
#endif
-#ifdef BB_LOCALE_SUPPORT
+#ifdef BB_LOCALE_SUPPORT
+#ifdef BB_INIT
if(getpid()!=1) /* Do not set locale for `init' */
+#endif
+ {
setlocale(LC_ALL, "");
+ }
#endif
run_applet_by_name(applet_name, argc, argv);