diff options
Diffstat (limited to 'src/unix/random-devurandom.c')
-rw-r--r-- | src/unix/random-devurandom.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/unix/random-devurandom.c b/src/unix/random-devurandom.c index bfc40d20..9aa762e3 100644 --- a/src/unix/random-devurandom.c +++ b/src/unix/random-devurandom.c @@ -74,10 +74,10 @@ int uv__random_readpath(const char* path, void* buf, size_t buflen) { static void uv__random_devurandom_init(void) { char c; - /* Linux's and NetBSD's random(4) man page suggests applications should read - * at least once from /dev/random before switching to /dev/urandom in order - * to seed the system RNG. Reads from /dev/random can of course block - * indefinitely until entropy is available but that's the point. + /* Linux's random(4) man page suggests applications should read at least + * once from /dev/random before switching to /dev/urandom in order to seed + * the system RNG. Reads from /dev/random can of course block indefinitely + * until entropy is available but that's the point. */ status = uv__random_readpath("/dev/random", &c, 1); } |