aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2014-09-20 17:51:23 -0500
committerRob Landley <rob@landley.net>2014-09-20 17:51:23 -0500
commit9b14cb6b12e6f1b07a1ad401e5cb6e091df4ac2f (patch)
tree381ab8b66cb4b1f5a93b09fb870ef18c3d8a0dae /main.c
parent94a4603481b9fc663a72549b4cd0dcbd95fca062 (diff)
downloadtoybox-9b14cb6b12e6f1b07a1ad401e5cb6e091df4ac2f.tar.gz
Always call setlocale if I18N is enabled, so nested toy_exec() can switch it back off if necessary.
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index cfa2cc99..6e7d2670 100644
--- a/main.c
+++ b/main.c
@@ -66,7 +66,7 @@ static void toy_singleinit(struct toy_list *which, char *argv[])
toys.which = which;
toys.argv = argv;
- if (CFG_TOYBOX_I18N && (which->flags & TOYFLAG_LOCALE)) setlocale(LC_ALL, "");
+ if (CFG_TOYBOX_I18N) setlocale(LC_ALL, "C"+!!(which->flags & TOYFLAG_LOCALE));
if (CFG_TOYBOX_HELP_DASHDASH && argv[1] && !strcmp(argv[1], "--help")) {
if (toys.which == toy_list && toys.argv[2])