diff options
author | Kim Alvefur <zash@zash.se> | 2012-12-16 14:36:44 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-12-16 14:36:44 +0100 |
commit | ffe6907cab680f6682eb3f2c184df35f6140937b (patch) | |
tree | d7bc37853c9ea6ff217374d39cba9154b802ef0d | |
parent | aa8855f3c7d1a2e4506b66294f22a2dab5662258 (diff) | |
parent | 17bfb654dfe761450695a914b34f05b6716bd85f (diff) | |
download | prosody-ffe6907cab680f6682eb3f2c184df35f6140937b.tar.gz prosody-ffe6907cab680f6682eb3f2c184df35f6140937b.zip |
Merge 0.9->trunk
-rw-r--r-- | util/datamanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/datamanager.lua b/util/datamanager.lua index b70ad931..383e738f 100644 --- a/util/datamanager.lua +++ b/util/datamanager.lua @@ -281,7 +281,7 @@ local type_map = { function users(host, store, typ) typ = type_map[typ or "keyval"]; - local store_dir = format("%s/%s/%s", data_path, encode(host), encode(store)); + local store_dir = format("%s/%s/%s", data_path, encode(host), store); local mode, err = lfs.attributes(store_dir, "mode"); if not mode then |