diff options
author | Waqas Hussain <waqas20@gmail.com> | 2012-12-03 10:04:34 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2012-12-03 10:04:34 +0500 |
commit | af18d67773bc5b2ce309ba99e7becbb7d80220ba (patch) | |
tree | 04c8fa7215db782cc848ff26a081da51d36d205e /net/http | |
parent | d753412283d3b5042ad8f47741adcf49ab29621c (diff) | |
parent | 1e6906ab0af916dddf8913f97b99ff9ac02c8f4e (diff) | |
download | prosody-af18d67773bc5b2ce309ba99e7becbb7d80220ba.tar.gz prosody-af18d67773bc5b2ce309ba99e7becbb7d80220ba.zip |
Merge 0.9->trunk.
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/parser.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/parser.lua b/net/http/parser.lua index 606d750c..c760a0a4 100644 --- a/net/http/parser.lua +++ b/net/http/parser.lua @@ -5,7 +5,7 @@ local url_parse = require "socket.url".parse; local urldecode = require "net.http".urldecode; local function preprocess_path(path) - path = urldecode((path:gsub("//+". "/"))); + path = urldecode((path:gsub("//+", "/"))); if path:sub(1,1) ~= "/" then path = "/"..path; end |