summaryrefslogtreecommitdiffstats
path: root/e_os.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-01-08 21:27:53 +0000
committerRichard Levitte <levitte@openssl.org>2001-01-08 21:27:53 +0000
commite02cc10ea4fa7ded67203bfa89628d8fc49c8fab (patch)
tree0eb7b2376e8a684937cf290223ae9e54a9b46b7d /e_os.h
parentb5524a3ac3b19d9a689002f46646395cf9800843 (diff)
Because /dev/urandom has a better chance of giving us a good and
quick answer, take that one first.
Diffstat (limited to 'e_os.h')
-rw-r--r--e_os.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/e_os.h b/e_os.h
index ba53b18b9c..d658191987 100644
--- a/e_os.h
+++ b/e_os.h
@@ -79,7 +79,7 @@ extern "C" {
#ifndef DEVRANDOM
/* set this to a comma-separated list of 'random' device files to try out.
* My default, we will try to read at least one of these files */
-#define DEVRANDOM "/dev/random","/dev/srandom","/dev/urandom"
+#define DEVRANDOM "/dev/urandom","/dev/random","/dev/srandom"
#endif
#if defined(__MWERKS__) && defined(macintosh)