diff options
author | Kim Alvefur <zash@zash.se> | 2019-05-21 08:52:21 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-05-21 08:52:21 +0200 |
commit | 069408d15861035e9da8052068c60939be938ab3 (patch) | |
tree | 90a2d9a17501e73f285579e5f7a814fcb33cd335 /util | |
parent | f430272c0164496c91a86ad5e027248afda401d4 (diff) | |
download | prosody-069408d15861035e9da8052068c60939be938ab3.tar.gz prosody-069408d15861035e9da8052068c60939be938ab3.zip |
util.random: Throw different error for EOL condition
Diffstat (limited to 'util')
-rw-r--r-- | util/random.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util/random.lua b/util/random.lua index 51f2747d..6782d7fa 100644 --- a/util/random.lua +++ b/util/random.lua @@ -14,7 +14,11 @@ local urandom, urandom_err = io.open("/dev/urandom", "r"); local function bytes(n) local data, err = urandom:read(n); if not data then - error("Unable to retrieve data from secure random number generator (/dev/urandom): "..tostring(err)); + if err then + error("Unable to retrieve data from secure random number generator (/dev/urandom): "..tostring(err)); + else + error("Secure random number generator (/dev/urandom) returned an end-of-file condition"); + end end return data; end |