diff options
author | Pádraig Brady <P@draigBrady.com> | 2015-08-16 21:45:47 -0700 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2015-09-03 00:34:12 +0100 |
commit | df3b9120b4b0444bedbe53ef7a2cc5bb28fb3943 (patch) | |
tree | 4647b96f5f3c5340dd4353cbc3b7708acc8a0ed0 /NEWS | |
parent | a8cc9ce3f290a83dfb656dabfab2a98e765a68a0 (diff) | |
download | coreutils-df3b9120b4b0444bedbe53ef7a2cc5bb28fb3943.tar.xz |
base64: no longer support hex or oct --wrap params
* src/base64.c (main): Support decimal numbers with leading zeros,
by disabling the auto detection of octal and hex. It's not
envisaged that base conversion is needed for --wrap parameters,
and in the edge case it is, $((0x0)) shell constructs can be used.
* tests/misc/base64.pl: Adjust accordingly.
* NEWS: Mention the change in behavior.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ GNU coreutils NEWS -*- outline -*- base32 is added to complement the existing base64 command, and encodes and decodes printable text as per RFC 4648. +** Changes in behavior + + base64 no longer supports hex or oct --wrap parameters, + thus better supporting decimals with leading zeros. + * Noteworthy changes in release 8.24 (2015-07-03) [stable] |