summaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
authorDenys Vlasenko2021-03-23 13:50:02 +0100
committerDenys Vlasenko2021-03-23 13:50:02 +0100
commitc2bd0b680667c7ec4956552f75d9ff7d040ac941 (patch)
tree8d117fedfebe03f6f97071ebc522d4ac03f08c47 /miscutils
parent14ed4ec8a416a60a214bf40f9185aa227ac44598 (diff)
downloadbusybox-c2bd0b680667c7ec4956552f75d9ff7d040ac941.zip
busybox-c2bd0b680667c7ec4956552f75d9ff7d040ac941.tar.gz
timeout,top,watch,ping: parse NN.N fractional duration in locales with other separators
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/dc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/miscutils/dc.c b/miscutils/dc.c
index e94dc39..42baa67 100644
--- a/miscutils/dc.c
+++ b/miscutils/dc.c
@@ -229,6 +229,7 @@ static void stack_machine(const char *argument)
const struct op *o;
next:
+//TODO: needs setlocale(LC_NUMERIC, "C")?
number = strtod(argument, &end);
if (end != argument) {
argument = end;