diff options
author | Kim Alvefur <zash@zash.se> | 2019-12-23 21:29:34 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-12-23 21:29:34 +0100 |
commit | 248ec3f83401528152c3b34dd81e994563706fea (patch) | |
tree | 1bc2b8cadccf763866a2450e2637bff0c8e38eff | |
parent | 83c028be30d1467f255756c081c1261ff294a522 (diff) | |
download | prosody-248ec3f83401528152c3b34dd81e994563706fea.tar.gz prosody-248ec3f83401528152c3b34dd81e994563706fea.zip |
net.http.parser: Silence warning about unused variable [luacheck]
-rw-r--r-- | net/http/parser.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/http/parser.lua b/net/http/parser.lua index 4e4ae9fb..62c09aef 100644 --- a/net/http/parser.lua +++ b/net/http/parser.lua @@ -63,7 +63,8 @@ function httpstream.new(success_cb, error_cb, parser_type, options_cb) if buftable then buf, buftable = t_concat(buf), false; end local index = buf:find("\r\n\r\n", nil, true); if not index then return; end -- not enough data - local method, path, httpversion, status_code, reason_phrase; + -- FIXME was reason_phrase meant to be passed on somewhere? + local method, path, httpversion, status_code, reason_phrase; -- luacheck: ignore reason_phrase local first_line; local headers = {}; for line in buf:sub(1,index+1):gmatch("([^\r\n]+)\r\n") do -- parse request |