summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/basic/random-util.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/basic/random-util.c b/src/basic/random-util.c
index 227b82f790..3891058cbc 100644
--- a/src/basic/random-util.c
+++ b/src/basic/random-util.c
@@ -342,9 +342,6 @@ void random_bytes(void *p, size_t n) {
* • This function will preferably use the CPU's RDRAND operation, if it is available, in
* order to return "mid-quality" random values cheaply.
*
- * • Use getrandom() with GRND_NONBLOCK, to return high-quality random values if they are
- * cheaply available.
- *
* • This function will return pseudo-random data, generated via libc rand() if nothing
* better is available.
*