diff options
author | ache <ache@FreeBSD.org> | 2008-07-22 15:25:35 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2008-07-22 15:25:35 +0000 |
commit | 639d7e6fa871efa9cc81df78635aea6a59627625 (patch) | |
tree | baefb2d4a0782bdd2b3d10c0aa0bc6581d757b2c /lib/libc/gen/arc4random.c | |
parent | c3ca4b7705b9f157d2ce7479513f82fc51db61e1 (diff) | |
download | FreeBSD-src-639d7e6fa871efa9cc81df78635aea6a59627625.zip FreeBSD-src-639d7e6fa871efa9cc81df78635aea6a59627625.tar.gz |
Change /dev/urandom to /dev/random since urandom marked as
XXX Deprecated
alias in /sys/dev/random/randomdev.c
Diffstat (limited to 'lib/libc/gen/arc4random.c')
-rw-r--r-- | lib/libc/gen/arc4random.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/gen/arc4random.c b/lib/libc/gen/arc4random.c index 56e457b..6f2dbde 100644 --- a/lib/libc/gen/arc4random.c +++ b/lib/libc/gen/arc4random.c @@ -54,7 +54,7 @@ struct arc4_stream { static pthread_mutex_t arc4random_mtx = PTHREAD_MUTEX_INITIALIZER; -#define RANDOMDEV "/dev/urandom" +#define RANDOMDEV "/dev/random" #define THREAD_LOCK() \ do { \ if (__isthreaded) \ |