<feed xmlns='http://www.w3.org/2005/Atom'>
<title>coreutils/src/shred.c, branch v6.0</title>
<subtitle>Mirror of https://https.git.savannah.gnu.org/git/coreutils.git/
</subtitle>
<id>https://git.shady.money/coreutils/atom?h=v6.0</id>
<link rel='self' href='https://git.shady.money/coreutils/atom?h=v6.0'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/'/>
<updated>2006-08-13T21:21:52Z</updated>
<entry>
<title>* src/shred.c (usage): Don't indent the second line of an item.</title>
<updated>2006-08-13T21:21:52Z</updated>
<author>
<name>Jim Meyering</name>
<email>jim@meyering.net</email>
</author>
<published>2006-08-13T21:21:52Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=418a7c8c43a610e5cf261c75168692887ba43c98'/>
<id>urn:sha1:418a7c8c43a610e5cf261c75168692887ba43c98</id>
<content type='text'>
Otherwise, help2man would misformat the output.
Reported by Adam Buchbinder in &lt;https://launchpad.net/bugs/48917&gt;.
</content>
</entry>
<entry>
<title>Use new random-number interface rather than rand-isaac.c.</title>
<updated>2006-08-08T22:19:39Z</updated>
<author>
<name>Paul Eggert</name>
<email>eggert@cs.ucla.edu</email>
</author>
<published>2006-08-08T22:19:39Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=65533e1b0939bba6a1a222ebc82189f448640ea9'/>
<id>urn:sha1:65533e1b0939bba6a1a222ebc82189f448640ea9</id>
<content type='text'>
Don't include rand-isaac.c; include randint.h and randread.h instead.
(RANDOM_SOURCE_OPTION): New enum.
(long_opts, usage, main): New option --random-source.
(struct irand_state, irand_init, irand32, irand_mod): Remove.
All callers changed to use randint interface.
(fillrand): Remove.  All callers changed to use randread interface.
(dopass): Remove dependency on ISAAC buffer size.
(genpattern): Don't wipe the random state here.
(randint_source): New static var.
(clear_random_data): New function.
(main): Allocate random source, and arrange to wipe it on exit.
</content>
</entry>
<entry>
<title>(fillrand): The assertion was way too weak, due to</title>
<updated>2006-04-19T06:27:43Z</updated>
<author>
<name>Paul Eggert</name>
<email>eggert@cs.ucla.edu</email>
</author>
<published>2006-04-19T06:27:43Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=43d487b7112d84bfbcb792164e6ccd046f1568a7'/>
<id>urn:sha1:43d487b7112d84bfbcb792164e6ccd046f1568a7</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>(wipename): Use new last_component, in place of base_name.</title>
<updated>2006-03-26T12:07:59Z</updated>
<author>
<name>Jim Meyering</name>
<email>jim@meyering.net</email>
</author>
<published>2006-03-26T12:07:59Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=d4d9a40b8277d288d6f13317f975f0ee704f11a7'/>
<id>urn:sha1:d4d9a40b8277d288d6f13317f975f0ee704f11a7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>(wipename): Use similar open flags to other places we open directories.</title>
<updated>2005-12-27T08:00:12Z</updated>
<author>
<name>Paul Eggert</name>
<email>eggert@cs.ucla.edu</email>
</author>
<published>2005-12-27T08:00:12Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=3f11d67a569b4cf14a9c4bf3e5b1bb80799be00f'/>
<id>urn:sha1:3f11d67a569b4cf14a9c4bf3e5b1bb80799be00f</id>
<content type='text'>
Don't bother trying to open dir for writing, since POSIX prohibits it.
</content>
</entry>
<entry>
<title>(struct irand_state, irand_init, irand32, irand_mod): Moved back here,</title>
<updated>2005-12-12T22:43:16Z</updated>
<author>
<name>Paul Eggert</name>
<email>eggert@cs.ucla.edu</email>
</author>
<published>2005-12-12T22:43:16Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=c5174f6fb2af2801895c90122e07139f4de5412d'/>
<id>urn:sha1:c5174f6fb2af2801895c90122e07139f4de5412d</id>
<content type='text'>
from rand-isaac.c.
</content>
</entry>
<entry>
<title>Include rand-isaac.c rather than rand-isaac.h.</title>
<updated>2005-12-12T22:08:50Z</updated>
<author>
<name>Paul Eggert</name>
<email>eggert@cs.ucla.edu</email>
</author>
<published>2005-12-12T22:08:50Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=30e44dd01414012c0caa930c3d1b96a6f63ee855'/>
<id>urn:sha1:30e44dd01414012c0caa930c3d1b96a6f63ee855</id>
<content type='text'>
(fillrand, dopass, main): Undo previous change.
</content>
</entry>
<entry>
<title>Don't include gethrxtime.h.  No longer needed.</title>
<updated>2005-12-10T10:02:24Z</updated>
<author>
<name>Jim Meyering</name>
<email>jim@meyering.net</email>
</author>
<published>2005-12-10T10:02:24Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=d6482a9ac2811dc88ed52dd41ebaa4b37ab0878f'/>
<id>urn:sha1:d6482a9ac2811dc88ed52dd41ebaa4b37ab0878f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Include rand-isaac.h.  Move ISAAC code to rand-isaac.c.</title>
<updated>2005-12-10T08:09:20Z</updated>
<author>
<name>Paul Eggert</name>
<email>eggert@cs.ucla.edu</email>
</author>
<published>2005-12-10T08:09:20Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=4013c49f1b522ea262e66ddc6184f5159c6416be'/>
<id>urn:sha1:4013c49f1b522ea262e66ddc6184f5159c6416be</id>
<content type='text'>
(fillrand, main): Adjust to the fact that the state size is now
runtime-configurable.
</content>
</entry>
<entry>
<title>Use `#ifdef HAVE_CONFIG_H', not `#if HAVE_CONFIG_H', for consistency with gnulib.</title>
<updated>2005-09-24T13:40:37Z</updated>
<author>
<name>Jim Meyering</name>
<email>jim@meyering.net</email>
</author>
<published>2005-09-24T13:40:37Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=8daf4759f43e53242a654eedd5be724f58d524f5'/>
<id>urn:sha1:8daf4759f43e53242a654eedd5be724f58d524f5</id>
<content type='text'>
</content>
</entry>
</feed>
