* libs/httpd: Use HTTP/1.0 for error messages

This commit is contained in:
Steven Barth 2008-06-25 16:50:55 +00:00
parent 215e225fe9
commit 5d9394a3d6

View file

@ -90,7 +90,7 @@ end
function Server.error(self, socket, code, msg)
hcode = tostring(code)
socket:send( "HTTP/1.1 " .. hcode .. " " ..
socket:send( "HTTP/1.0 " .. hcode .. " " ..
luci.http.protocol.statusmsg[code] .. "\r\n" )
socket:send( "Connection: close\r\n" )
socket:send( "Content-Type: text/plain\r\n\r\n" )