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:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-29 12:19:04 +0400
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-29 12:19:04 +0400
commit74078685e6dfb5d084901ebf44351f3c77987f3b (patch)
tree09c346499e7d0426598d483b419fa7c3cf24c08f /applets/busybox.c
parent843c5ef0f95e0a6f61f4e27d0355aca5e09ee6b1 (diff)
busybox.c: ENABLE_LOCALE logic correct.
Diffstat (limited to 'applets/busybox.c')
-rw-r--r--applets/busybox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/busybox.c b/applets/busybox.c
index 833e8d372..90ea2bdce 100644
--- a/applets/busybox.c
+++ b/applets/busybox.c
@@ -70,7 +70,7 @@ int main(int argc, char **argv)
if (*(s++) == '/') bb_applet_name = s;
/* Set locale for everybody except `init' */
- if(ENABLE_LOCALE_SUPPORT && (!ENABLE_INIT || getpid()==1))
+ if(ENABLE_LOCALE_SUPPORT && getpid() != 1)
setlocale(LC_ALL, "");
run_applet_by_name(bb_applet_name, argc, argv);