aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstate/global_rng.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-02-20 21:13:16 +0000
committerlloyd <[email protected]>2012-02-20 21:13:16 +0000
commitc00027b8114f49d7855d1a79b99048297dc50e34 (patch)
tree347613c9b9ecc5e53f674ea36ad55777e132290c /src/libstate/global_rng.cpp
parent49f333282279cc22fa8af7423447973b9dcfeee9 (diff)
parente5a1b8c4392b5383af133591cb9238fb8c1b4516 (diff)
propagate from branch 'net.randombit.botan' (head c247a55e7c0bcd239fcfc672139b59ef63d7ee84)
to branch 'net.randombit.botan.cxx11' (head 16d7756c6b8933d0d543ebdda9c7e8f4908a4a33)
Diffstat (limited to 'src/libstate/global_rng.cpp')
-rw-r--r--src/libstate/global_rng.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstate/global_rng.cpp b/src/libstate/global_rng.cpp
index 7968613c9..066d033a1 100644
--- a/src/libstate/global_rng.cpp
+++ b/src/libstate/global_rng.cpp
@@ -67,7 +67,7 @@ void add_entropy_sources(RandomNumberGenerator* rng)
#if defined(BOTAN_HAS_ENTROPY_SRC_DEV_RANDOM)
rng->add_entropy_source(
new Device_EntropySource(
- split_on("/dev/urandom:/dev/random:/dev/srandom", ':')
+ split_on("/dev/random:/dev/srandom:/dev/urandom", ':')
)
);
#endif