From d3d9a986ba588bba4f28b856f19f2a75209d3763 Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Tue, 16 Dec 2008 03:46:17 +0500 Subject: Fixed URL encoding to generate %0x instead of %x --- prosody | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prosody') diff --git a/prosody b/prosody index 3b95663f..98d15da2 100755 --- a/prosody +++ b/prosody @@ -115,7 +115,7 @@ function mkdir(path) path = path:gsub("/", path_separator); 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 mkdirs(host) if not _mkdir[host] then local host_dir = string.format("%s/%s", data_path, encode(host)); -- cgit v1.2.3