* lib/sgi-cgi, lib/sgi-webuci: Enforce HTTP standards
[project/luci.git] / libs / sgi-cgi / luasrc / sgi / cgi.lua
index 5555e4a0586c4b76b05d8f14d67c46a8c3c7a8a6..7f54e70218dbcf74feae327f9f65192523ee0cef 100644 (file)
@@ -49,11 +49,11 @@ function run()
                end
 
                if id == 1 then
-                       io.write("Status: " .. tostring(data1) .. " " .. data2 .. "\n")
+                       io.write("Status: " .. tostring(data1) .. " " .. data2 .. "\r\n")
                elseif id == 2 then
-                       io.write(data1 .. ": " .. data2 .. "\n")
+                       io.write(data1 .. ": " .. data2 .. "\r\n")
                elseif id == 3 then
-                       io.write("\n")
+                       io.write("\r\n")
                elseif id == 4 then
                        io.write(data1)
                end