mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.uuid: Use a local instead of a global.
This commit is contained in:
parent
bc55b5ad8f
commit
3ee35fe849
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ local function _seed(x)
|
|||
buffer = new_random(buffer..x);
|
||||
end
|
||||
local function get_nibbles(n)
|
||||
if #buffer < n then seed(uniq_time()); end
|
||||
if #buffer < n then _seed(uniq_time()); end
|
||||
local r = buffer:sub(0, n);
|
||||
buffer = buffer:sub(n+1);
|
||||
return r;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue