diff options
author | Alan Somers <asomers@FreeBSD.org> | 2017-12-05 04:22:35 +0000 |
---|---|---|
committer | Alan Somers <asomers@FreeBSD.org> | 2017-12-05 04:22:35 +0000 |
commit | 95639a80efb8d691feabe83428703dea89b873a4 (patch) | |
tree | a0c405912a71261a4381ebd9febf3c405f738159 /etc/mtree | |
parent | cea266bd9fb2e528e0f22fd06476c3a77b0bc3f3 (diff) | |
download | src-95639a80efb8d691feabe83428703dea89b873a4.tar.gz src-95639a80efb8d691feabe83428703dea89b873a4.zip |
dc(1): fix input of non-decimal fractional numbers
Inputting fractional non-decimal numbers has never worked correctly in our
OpenBSD-derived dc(1). It truncates the input to a number of decimal places
equal to the number of hexadecimal (or whatever base) places given on the
input. That's unacceptable, because many numbers require more precision to
represent in base 10 than in their original bases.
Fix this bug by using as many decimal places as needed to represent the
input, up to the maximum of the global scale factor.
This has one mildly surprising side effect: the scale of a number entered in
non-decimal mode will no longer necessarily equal the number of hexadecimal
(or whatever base) places given on the input. I think that's an acceptable
behavior change, given that inputting fractional non-decimal numbers never
worked in the first place, and the man page doesn't specify whether trailing
zeros on the input should affect a number's scale.
PR: 206230
Reported by: nibbana@gmx.us
Reviewed by: pfg
Differential Revision: https://reviews.freebsd.org/D13336
Notes
Notes:
svn path=/head/; revision=326556
Diffstat (limited to 'etc/mtree')
-rw-r--r-- | etc/mtree/BSD.tests.dist | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/etc/mtree/BSD.tests.dist b/etc/mtree/BSD.tests.dist index 91c7b73eaec8..d025fbf62fc5 100644 --- a/etc/mtree/BSD.tests.dist +++ b/etc/mtree/BSD.tests.dist @@ -654,6 +654,8 @@ .. cut .. + dc + .. diff .. dirname |