aboutsummaryrefslogtreecommitdiffstats
path: root/net/dns.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2015-05-06 19:21:29 +0100
committerMatthew Wild <mwild1@gmail.com>2015-05-06 19:21:29 +0100
commitec83b2aa91ab9142ad6e7f4d26b0f6d20853e747 (patch)
treeac1899833b30b87ea97439f061e9b892bd188367 /net/dns.lua
parent150799952b2bb969b2cea28c48f52b9ccad13b2b (diff)
parentd67ec1537ba3d0e41615f43c0afe13828ecc002e (diff)
downloadprosody-ec83b2aa91ab9142ad6e7f4d26b0f6d20853e747.tar.gz
prosody-ec83b2aa91ab9142ad6e7f4d26b0f6d20853e747.zip
Merge
Diffstat (limited to 'net/dns.lua')
-rw-r--r--net/dns.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dns.lua b/net/dns.lua
index 2128fb1a..037f3ec6 100644
--- a/net/dns.lua
+++ b/net/dns.lua
@@ -226,7 +226,7 @@ end
function dns.random(...) -- - - - - - - - - - - - - - - - - - - dns.random
- math.randomseed(math.floor(10000*socket.gettime()) % 0x100000000);
+ math.randomseed(math.floor(10000*socket.gettime()) % 0x80000000);
dns.random = math.random;
return dns.random(...);
end