aboutsummaryrefslogtreecommitdiffstats
path: root/util
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 /util
parent8f40f1f4e63216c60f2f61610a4386376c46c476 (diff)
parent38a580bfebacc3c2725f4224c0ca6e7b5c1f8a51 (diff)
downloadprosody-a7606f77d99c798faa7067331e5b9ac0272c5ad1.tar.gz
prosody-a7606f77d99c798faa7067331e5b9ac0272c5ad1.zip
Merge 0.9->0.10
Diffstat (limited to 'util')
-rw-r--r--util/datamanager.lua2
1 files changed, 1 insertions, 1 deletions
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)