[Bug 201489] random_harvest(9) man page has an incorrect function definition
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Sun Jul 12 06:19:27 UTC 2015
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201489
Bug ID: 201489
Summary: random_harvest(9) man page has an incorrect function
definition
Product: Documentation
Version: Latest
Hardware: Any
OS: Any
Status: New
Severity: Affects Many People
Priority: ---
Component: Documentation
Assignee: freebsd-doc at FreeBSD.org
Reporter: kenji.rikitake at acm.org
Created attachment 158639
--> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=158639&action=edit
unified diff for /usr/share/man/man9/random_harvest.9
I am using FreeBSD 10.2-PRERELEASE amd64 r285345.
I've found a manual bug at /usr/share/man/man9/random_harvest.9.
The function description
void random_harvest(void *entropy, u_int size, u_int bits, u_int frac,
enum esource source);
is different from the current definition in <sys/random.h> as
void random_harvest(void *, u_int, u_int, enum esource);
and in /usr/src/sys/dev/random/harvest.c as:
void
random_harvest(void *entropy, u_int count, u_int bits, enum esource origin)
The attached patch is to fix the random_harvest.9 file.
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-doc
mailing list