aboutsummaryrefslogtreecommitdiffstats
path: root/util/random.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-02-22 18:46:59 +0100
committerKim Alvefur <zash@zash.se>2016-02-22 18:46:59 +0100
commit349f3e7a755249a16acf5417f9bea95c0df77513 (patch)
tree15d7151c2609ac821e0dd08e27f67795300b090d /util/random.lua
parent82a913c6816be2b0503368afac85b8b20335db0e (diff)
parent6ee4f6f618ee4a07f3b25f38c7da675d68fdceee (diff)
downloadprosody-349f3e7a755249a16acf5417f9bea95c0df77513.tar.gz
prosody-349f3e7a755249a16acf5417f9bea95c0df77513.zip
Merge 0.10->trunk
Diffstat (limited to 'util/random.lua')
-rw-r--r--util/random.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/random.lua b/util/random.lua
index e4b4a700..574e2e1c 100644
--- a/util/random.lua
+++ b/util/random.lua
@@ -6,6 +6,9 @@
-- COPYING file in the source package for more information.
--
+local ok, crand = pcall(require, "util.crand");
+if ok then return crand; end
+
local urandom, urandom_err = io.open("/dev/urandom", "r");
local function seed()