aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-05-18 18:51:25 +0200
committerKim Alvefur <zash@zash.se>2019-05-18 18:51:25 +0200
commitf51f1f1375c3b1ff58aaa1f8b9082b69b1ef95d7 (patch)
tree01ff1fc47ba0dbe948bb7f124872698fc8586498 /util
parent23da49fba0397a2c8f2701efb22634f0a3f68bd8 (diff)
downloadprosody-f51f1f1375c3b1ff58aaa1f8b9082b69b1ef95d7.tar.gz
prosody-f51f1f1375c3b1ff58aaa1f8b9082b69b1ef95d7.zip
util.random: Coerce error to string (thanks waqas)
In theory this could happen in an EOF condition, which should be impossible with a read from /dev/urandom.
Diffstat (limited to 'util')
-rw-r--r--util/random.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/random.lua b/util/random.lua
index 8ae06b49..51f2747d 100644
--- a/util/random.lua
+++ b/util/random.lua
@@ -14,7 +14,7 @@ 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): "..err);
+ error("Unable to retrieve data from secure random number generator (/dev/urandom): "..tostring(err));
end
return data;
end