* libs/httpd: Use HTTP/1.0 for error messages
authorSteven Barth <steven@midlink.org>
Wed, 25 Jun 2008 16:50:55 +0000 (16:50 +0000)
committerSteven Barth <steven@midlink.org>
Wed, 25 Jun 2008 16:50:55 +0000 (16:50 +0000)
libs/httpd/luasrc/httpd/server.lua

index 181ca24..1b54b30 100644 (file)
@@ -90,7 +90,7 @@ end
 function Server.error(self, socket, code, msg)
        hcode = tostring(code)
        
 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" )
         luci.http.protocol.statusmsg[code] .. "\r\n" )
        socket:send( "Connection: close\r\n" )
        socket:send( "Content-Type: text/plain\r\n\r\n" )