From fcdb00f7359488d197ac3361dfbc49ccdead8b87 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 21 Nov 2006 00:09:37 +0000 Subject: httpd: LC_TIME locale _must_ be POSIX to httpd! We speak over the net! --- applets/busybox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'applets/busybox.c') 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) for (s = applet_name; *s ;) if (*(s++) == '/') applet_name = s; - /* Set locale for everybody except `init' */ - if(ENABLE_LOCALE_SUPPORT && getpid() != 1) + /* Set locale for everybody except 'init' */ + if (ENABLE_LOCALE_SUPPORT && getpid() != 1) setlocale(LC_ALL, ""); run_applet_by_name(applet_name, argc, argv); -- cgit v1.2.3