#
76f38317 |
| 22-Feb-2016 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r295845 through r295901.
|
#
317cec3c |
| 22-Feb-2016 |
Glen Barber <gjb@FreeBSD.org> |
MFH
Sponsored by: The FreeBSD Foundation
|
#
674677bd |
| 21-Feb-2016 |
Edward Tomasz Napierala <trasz@FreeBSD.org> |
Make the "invalid numeric value" error message actually displayable (was a dead code before).
Submitted by: bde@ (earlier version) Reviewed by: bde@ MFC after: 1 month Sponsored by: The FreeBSD Foun
Make the "invalid numeric value" error message actually displayable (was a dead code before).
Submitted by: bde@ (earlier version) Reviewed by: bde@ MFC after: 1 month Sponsored by: The FreeBSD Foundation
show more ...
|
#
4156ce4f |
| 11-Feb-2016 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r295351 through r295543.
|
#
30922917 |
| 10-Feb-2016 |
Glen Barber <gjb@FreeBSD.org> |
MFH
Sponsored by: The FreeBSD Foundation
|
#
c075c8bb |
| 09-Feb-2016 |
Edward Tomasz Napierala <trasz@FreeBSD.org> |
Improve comment to reflect recent changes.
MFC after: 1 month Sponsored by: The FreeBSD Foundation
|
#
f3041442 |
| 09-Feb-2016 |
Edward Tomasz Napierala <trasz@FreeBSD.org> |
Use a proper type for return value of postfix_to_mult(); the way it's being used wouldn't work if the value returned didn't fit in intmax_t.
Submitted by: bde@ MFC after: 1 month Sponsored by: The F
Use a proper type for return value of postfix_to_mult(); the way it's being used wouldn't work if the value returned didn't fit in intmax_t.
Submitted by: bde@ MFC after: 1 month Sponsored by: The FreeBSD Foundation
show more ...
|
#
d8192361 |
| 09-Feb-2016 |
Edward Tomasz Napierala <trasz@FreeBSD.org> |
Use proper functions for parsing the numeric values.
Submitted by: bde@ MFC after: 1 month Sponsored by: The FreeBSD Foundation
|
#
bbb51924 |
| 08-Feb-2016 |
Glen Barber <gjb@FreeBSD.org> |
MFH
Sponsored by: The FreeBSD Foundation
|
#
a49d8b6e |
| 06-Feb-2016 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r294961 through r295350.
|
#
e53d0abf |
| 04-Feb-2016 |
Edward Tomasz Napierala <trasz@FreeBSD.org> |
Add 't' and 'p' postfixes to dd(1).
MFC after: 1 month Sponsored by: The FreeBSD Foundation
|
#
66d082c8 |
| 04-Feb-2016 |
Edward Tomasz Napierala <trasz@FreeBSD.org> |
Reduce code duplication.
MFC after: 1 month Sponsored by: The FreeBSD Foundation
|
Revision tags: release/10.2.0, release/10.1.0 |
|
#
f4cfd28b |
| 27-Oct-2014 |
Kurt Jaeger <pi@FreeBSD.org> |
bin/dd: revert 273734, as it fails on 32bit platforms
Revert: insufficient testing on 32bit platforms
PR: 191263
|
#
179eb711 |
| 27-Oct-2014 |
Kurt Jaeger <pi@FreeBSD.org> |
bin/dd: Fix incorrect casting of arguments
dd(1) casts many of its numeric arguments from uintmax_t to intmax_t and back again to detect whether or not the original arguments were negative. This cau
bin/dd: Fix incorrect casting of arguments
dd(1) casts many of its numeric arguments from uintmax_t to intmax_t and back again to detect whether or not the original arguments were negative. This caused wrong behaviour in some boundary cases:
$ dd if=/dev/zero of=/dev/null count=18446744073709551615 dd: count cannot be negative
After the fix:
$ dd if=/dev/zero of=/dev/null count=18446744073709551615 dd: count: Result too large
PR: 191263 Submitted by: will@worrbase.com Approved by: cognet@
show more ...
|
Revision tags: release/9.3.0 |
|
#
6cec9cad |
| 03-Jun-2014 |
Peter Grehan <grehan@FreeBSD.org> |
MFC @ r266724
An SVM update will follow this.
|
#
3b8f0845 |
| 28-Apr-2014 |
Simon J. Gerraty <sjg@FreeBSD.org> |
Merge head
|
#
84e51a1b |
| 23-Apr-2014 |
Alan Somers <asomers@FreeBSD.org> |
IFC @264767
|
#
c3f5e9c5 |
| 03-Apr-2014 |
Xin LI <delphij@FreeBSD.org> |
Implement GNU's extension of 'status' operand. The GNU syntax is borrowed where syntax status=noxfer means no transfer statistics and status=none means no status information at all.
This feature is
Implement GNU's extension of 'status' operand. The GNU syntax is borrowed where syntax status=noxfer means no transfer statistics and status=none means no status information at all.
This feature is useful because the statistics information can sometimes be annoying, and redirecting stderr to /dev/null would mean error messages also gets silenced.
Obtained from: OpenBSD MFC after: 2 weeks
show more ...
|
Revision tags: release/10.0.0, release/9.2.0 |
|
#
d1d01586 |
| 05-Sep-2013 |
Simon J. Gerraty <sjg@FreeBSD.org> |
Merge from head
|
#
40f65a4d |
| 07-Aug-2013 |
Peter Grehan <grehan@FreeBSD.org> |
IFC @ r254014
|
#
552311f4 |
| 17-Jul-2013 |
Xin LI <delphij@FreeBSD.org> |
IFC @253398
|
#
cfe30d02 |
| 19-Jun-2013 |
Gleb Smirnoff <glebius@FreeBSD.org> |
Merge fresh head.
|
Revision tags: release/8.4.0 |
|
#
4ac11639 |
| 10-May-2013 |
Eitan Adler <eadler@FreeBSD.org> |
Make dd's signal handler async safe.
PR: bin/75258 Submitted by: "Oleg V. Nauman" <oleg@reis.zp.ua> Arrival Date: Sun Dec 19 14:50:21 GMT 2004 Reviewed by: mjg, jhb Reviewed by: jilles (earlier ver
Make dd's signal handler async safe.
PR: bin/75258 Submitted by: "Oleg V. Nauman" <oleg@reis.zp.ua> Arrival Date: Sun Dec 19 14:50:21 GMT 2004 Reviewed by: mjg, jhb Reviewed by: jilles (earlier version) MFC after: 1 week
show more ...
|
Revision tags: release/9.1.0, release/8.3.0_cvs, release/8.3.0, release/9.0.0, release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0, release/8.1.0_cvs, release/8.1.0, release/7.3.0_cvs, release/7.3.0, release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0, release/6.2.0_cvs, release/6.2.0, release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0, release/6.0.0_cvs, release/6.0.0, release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0 |
|
#
e3edab4a |
| 15-Aug-2004 |
Robert Watson <rwatson@FreeBSD.org> |
Add a "fillchar" command line argument to dd(1) that permits the user to specify an alternative padding character when using a conversion mode, or when using noerror with sync and an input error occu
Add a "fillchar" command line argument to dd(1) that permits the user to specify an alternative padding character when using a conversion mode, or when using noerror with sync and an input error occurs. This facilities reading old and error-prone media by allowing the user to more effectively mark error blocks in the output stream.
show more ...
|
#
1e1d03d7 |
| 31-Jul-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Allow for capital letters as size suffixes.
Inspired by: le Approved by: green (maintainer)
|