diff options
author | Steven Barth <steven@midlink.org> | 2008-07-19 17:13:11 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-07-19 17:13:11 +0000 |
commit | faed4aa7f1f2a572fed2fb7f691357bdfb42bbe1 (patch) | |
tree | 3b26a150421d2a78008cf956116fe755602162ea /libs/sgi-cgi | |
parent | b8dc7fdfa3727f204bddd7af56859995709ffb89 (diff) |
libs/sgi-cgi: Workaround for broken CGI implementation of Busybox HTTPd
Diffstat (limited to 'libs/sgi-cgi')
-rw-r--r-- | libs/sgi-cgi/luasrc/sgi/cgi.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/sgi-cgi/luasrc/sgi/cgi.lua b/libs/sgi-cgi/luasrc/sgi/cgi.lua index 427fa8733..0d5ba6ff1 100644 --- a/libs/sgi-cgi/luasrc/sgi/cgi.lua +++ b/libs/sgi-cgi/luasrc/sgi/cgi.lua @@ -37,6 +37,7 @@ function run() ) local x = coroutine.create(luci.dispatcher.httpdispatch) + local hcache = "" while coroutine.status(x) ~= "dead" do local res, id, data1, data2 = coroutine.resume(x, r) @@ -51,8 +52,9 @@ function run() if id == 1 then io.write("Status: " .. tostring(data1) .. " " .. data2 .. "\r\n") elseif id == 2 then - io.write(data1 .. ": " .. data2 .. "\r\n") + hcache = hcache .. data1 .. ": " .. data2 .. "\r\n" elseif id == 3 then + io.write(hcache) io.write("\r\n") elseif id == 4 then io.write(data1) |