diff options
author | ache <ache@FreeBSD.org> | 1997-03-23 23:09:31 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-03-23 23:09:31 +0000 |
commit | 27fa1c8849b0f064c91087dfde725c513da496cd (patch) | |
tree | 79882c3c7e0a5873d2b686857a2b0e4f6e206573 /lib/libc | |
parent | d2a19efd66e804cee2a49139b9a5d92a51183d90 (diff) | |
download | FreeBSD-src-27fa1c8849b0f064c91087dfde725c513da496cd.zip FreeBSD-src-27fa1c8849b0f064c91087dfde725c513da496cd.tar.gz |
Fix urandom reference in the comment
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/stdlib/random.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdlib/random.c b/lib/libc/stdlib/random.c index a3698a5..bc7d840 100644 --- a/lib/libc/stdlib/random.c +++ b/lib/libc/stdlib/random.c @@ -284,7 +284,7 @@ srandom(x) * * Many programs choose the seed value in a totally predictable manner. * This often causes problems. We seed the generator using the much more - * secure `/dev/random' interface. Note that this particular seeding + * secure urandom(4) interface. Note that this particular seeding * procedure can generate states which are impossible to reproduce by * calling srandom() with any value, since the succeeding terms in the * state buffer are no longer derived from the LC algorithm applied to |