diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-12-25 01:37:13 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-12-25 01:37:13 +0000 |
commit | 449e72c7363f6bb316ba516e20a79d01f8b2a558 (patch) | |
tree | 4e99a91122be3df0e1d74e02791b9fd0fdc68087 /net/http.lua | |
parent | 1f5c712bcd35210ccc29e821ad367d38c8e53d1e (diff) | |
parent | 385317309cf0ebbeddc6ebdfe7daa69a73e8f79c (diff) | |
download | prosody-449e72c7363f6bb316ba516e20a79d01f8b2a558.tar.gz prosody-449e72c7363f6bb316ba516e20a79d01f8b2a558.zip |
Automated merge with http://waqas.ath.cx:8000/
Diffstat (limited to 'net/http.lua')
-rw-r--r-- | net/http.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http.lua b/net/http.lua index a661bb52..00949901 100644 --- a/net/http.lua +++ b/net/http.lua @@ -81,7 +81,7 @@ local function request_reader(request, data, startpos) return request.callback(0, "invalid-status-line", request); end - request.responsecode, request.responseversion = code, http; + request.code, request.responseversion = code, http; if request.onlystatus or not expectbody(request, tonumber(code)) then if request.callback then |