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:
authorDenys Vlasenko <vda.linux@googlemail.com>2021-03-23 15:50:02 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2021-03-23 15:50:02 +0300
commitc2bd0b680667c7ec4956552f75d9ff7d040ac941 (patch)
tree8d117fedfebe03f6f97071ebc522d4ac03f08c47 /miscutils
parent14ed4ec8a416a60a214bf40f9185aa227ac44598 (diff)
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 e94dc39e0..42baa67ad 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;