diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-12-16 02:40:50 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-12-16 02:40:50 +0000 |
commit | e2d0d043df5adccb40575af6626535850d110cbb (patch) | |
tree | 1a448b2f0c53925370f7ec635e6e037c58143520 /tools/ejabberd2prosody.lua | |
parent | 19910bcd283e98429564dfff75847b155e72ed86 (diff) | |
parent | d3d9a986ba588bba4f28b856f19f2a75209d3763 (diff) | |
download | prosody-e2d0d043df5adccb40575af6626535850d110cbb.tar.gz prosody-e2d0d043df5adccb40575af6626535850d110cbb.zip |
Second merge from waqas
Diffstat (limited to 'tools/ejabberd2prosody.lua')
-rwxr-xr-x | tools/ejabberd2prosody.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ejabberd2prosody.lua b/tools/ejabberd2prosody.lua index 3c3ce945..858d78bb 100755 --- a/tools/ejabberd2prosody.lua +++ b/tools/ejabberd2prosody.lua @@ -37,7 +37,7 @@ function mkdir(path) --print("mkdir",path);
local x = io.popen("mkdir "..path.." 2>&1"):read("*a");
end
-function encode(s) return s and (s:gsub("%W", function (c) return string.format("%%%x", c:byte()); end)); end
+function encode(s) return s and (s:gsub("%W", function (c) return string.format("%%%02x", c:byte()); end)); end
function getpath(username, host, datastore, ext)
ext = ext or "dat";
if username then
|