summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1995-07-07 04:46:18 +0000
committerJim Meyering <jim@meyering.net>1995-07-07 04:46:18 +0000
commitbb5590f7b6fece095d06cd11ba54bdbb72fdb10f (patch)
treef0fe3157b51fe65f299ac26c1905154ded59a4d0
parent67718aff76c90766c1167612f790e7aa655ff941 (diff)
downloadcoreutils-bb5590f7b6fece095d06cd11ba54bdbb72fdb10f.tar.xz
.
-rw-r--r--old/textutils/ChangeLog12
1 files changed, 11 insertions, 1 deletions
diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog
index 001504d49..a4aa5bcef 100644
--- a/old/textutils/ChangeLog
+++ b/old/textutils/ChangeLog
@@ -1,9 +1,19 @@
+Thu Jul 6 23:44:20 1995 Jim Meyering (meyering@comco.com)
+
+ * od.c (dump): Correct loop-termination criterion.
+ Before, running `printf 1234| ./od --width=4 --read-bytes=4'
+ printed output for 8 bytes -- the last four were garbage.
+ This happened only when the dump limit, N, was specified (with
+ --read-bytes=N) and N was a multiple of bytes_per_block
+ (usually 16, but 4 in this example). From Andreas Schwab.
+
Sun Jul 2 22:12:40 1995 Jim Meyering (meyering@comco.com)
* lib/Makefile.in (check): Depend on libtu.a.
* md5sum.c (split_3): Rewrite to parse Plumb/Lankester format as well.
- (main): Write (de facto) standard Plumb/Lankester format.
+ (main): Print each sum line in (de facto) standard Plumb/Lankester
+ format.
New option: --quiet.
Check option no longer takes an argument.
When checking, exit status reflects success.