aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-05-03 18:38:39 +0200
committerKim Alvefur <zash@zash.se>2015-05-03 18:38:39 +0200
commita7606f77d99c798faa7067331e5b9ac0272c5ad1 (patch)
treed4e7b48652c302f6f92aaf08fa5f7624fdd9f612
parent8f40f1f4e63216c60f2f61610a4386376c46c476 (diff)
parent38a580bfebacc3c2725f4224c0ca6e7b5c1f8a51 (diff)
downloadprosody-a7606f77d99c798faa7067331e5b9ac0272c5ad1.tar.gz
prosody-a7606f77d99c798faa7067331e5b9ac0272c5ad1.zip
Merge 0.9->0.10
-rw-r--r--net/dns.lua2
-rw-r--r--util/datamanager.lua2
2 files changed, 2 insertions, 2 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
diff --git a/util/datamanager.lua b/util/datamanager.lua
index b82349f1..b4138638 100644
--- a/util/datamanager.lua
+++ b/util/datamanager.lua
@@ -293,7 +293,7 @@ function users(host, store, typ)
local mode, err = lfs.attributes(store_dir, "mode");
if not mode then
- return function() log("debug", err or (store_dir .. " does not exist")) end
+ return function() log("debug", "%s", err or (store_dir .. " does not exist")) end
end
local next, state = lfs.dir(store_dir);
return function(state)