$OpenBSD: patch-crypto_rand_randfile_c,v 1.2 2018/11/20 22:19:48 sthen Exp $

Index: crypto/rand/randfile.c
--- crypto/rand/randfile.c.orig
+++ crypto/rand/randfile.c
@@ -359,11 +359,11 @@ const char *RAND_file_name(char *buf, size_t size)
      */
 
     if (!buf[0])
-        if (BUF_strlcpy(buf, "/dev/arandom", size) >= size) {
+        if (BUF_strlcpy(buf, "/dev/urandom", size) >= size) {
             return (NULL);
         }
     if (stat(buf, &sb) == -1)
-        if (BUF_strlcpy(buf, "/dev/arandom", size) >= size) {
+        if (BUF_strlcpy(buf, "/dev/urandom", size) >= size) {
             return (NULL);
         }
 #endif
