mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.random: Throw different error for EOL condition
This commit is contained in:
parent
c42ccf1bcc
commit
a6e44a24a0
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue