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 | 93eb1dd57fccb90c225cb292f9a7a6f84292811c (patch) | |
tree | 90a2d9a17501e73f285579e5f7a814fcb33cd335 /util/random.lua | |
parent | 13e3b3fb15cf9bd7cd82b860c7041a6e855bb0e9 (diff) | |
download | prosody-93eb1dd57fccb90c225cb292f9a7a6f84292811c.tar.gz prosody-93eb1dd57fccb90c225cb292f9a7a6f84292811c.zip |
util.random: Throw different error for EOL condition
Diffstat (limited to 'util/random.lua')
-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 |