diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-21 00:09:37 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-21 00:09:37 +0000 |
commit | 121105952f7db668ea774ce7889c9485723019f1 (patch) | |
tree | f9dae67bb1b22c7249c24e20b7f4ae82ec824d52 /applets | |
parent | 230310058181bfa932f1f8532a85a27bd3b467a8 (diff) | |
download | busybox-w32-121105952f7db668ea774ce7889c9485723019f1.tar.gz busybox-w32-121105952f7db668ea774ce7889c9485723019f1.tar.bz2 busybox-w32-121105952f7db668ea774ce7889c9485723019f1.zip |
httpd: LC_TIME locale _must_ be POSIX to httpd! We speak over the net!
git-svn-id: svn://busybox.net/trunk/busybox@16596 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets')
-rw-r--r-- | applets/busybox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index 9f2eddebd..4d59b4518 100644 --- a/applets/busybox.c +++ b/applets/busybox.c | |||
@@ -64,8 +64,8 @@ int main(int argc, char **argv) | |||
64 | for (s = applet_name; *s ;) | 64 | for (s = applet_name; *s ;) |
65 | if (*(s++) == '/') applet_name = s; | 65 | if (*(s++) == '/') applet_name = s; |
66 | 66 | ||
67 | /* Set locale for everybody except `init' */ | 67 | /* Set locale for everybody except 'init' */ |
68 | if(ENABLE_LOCALE_SUPPORT && getpid() != 1) | 68 | if (ENABLE_LOCALE_SUPPORT && getpid() != 1) |
69 | setlocale(LC_ALL, ""); | 69 | setlocale(LC_ALL, ""); |
70 | 70 | ||
71 | run_applet_by_name(applet_name, argc, argv); | 71 | run_applet_by_name(applet_name, argc, argv); |