summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-04-19 06:28:11 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-04-19 06:28:11 +0000
commit5bbcc061d8c09d20c3c3ab3e8331cc2f71958b2f (patch)
treefb09bf4338425e8c8883ee9f4b400ebf471941b5 /ChangeLog
parent43d487b7112d84bfbcb792164e6ccd046f1568a7 (diff)
downloadcoreutils-5bbcc061d8c09d20c3c3ab3e8331cc2f71958b2f.tar.xz
Change 'shred' to not use alloca.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e5ed89184..e62718540 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,17 @@
-2006-04-18 Jim Meyering <jim@meyering.net>
+2006-04-18 Paul Eggert <eggert@cs.ucla.edu>
* Version 6.0-cvs.
+ * src/shred.c (fillrand): The assertion was way too weak, due to
+ what must be a typo. Strengthen it to its intended value.
+ (dopass): Don't use alloca; it's not worth the aggravation here,
+ since it's used only to get a page-aligned buffer, and page
+ alignment doesn't buy us much here. I'm suspicious that alloca
+ causes problems on some hosts, due to a recent bug report by Adam
+ Waltman.
+
+2006-04-18 Jim Meyering <jim@meyering.net>
+
* tests/misc/tty-eof: Add new programs, base64, sha224sum, sha256sum,
sha384sum, sha512sum.