summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-06-21 16:39:51 +0000
committerSteven Barth <steven@midlink.org>2008-06-21 16:39:51 +0000
commit16dfa697e4774d9346742b0fd24fcf1741d1b79c (patch)
tree9b54b9687ba1546075c11495fe126bbc178f7d69
parentb28bf0f3943d559aacf08058ec7f0f9c9454a92c (diff)
* Fixed call to push_response
-rw-r--r--libs/httpd/luasrc/httpd/module.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/httpd/luasrc/httpd/module.lua b/libs/httpd/luasrc/httpd/module.lua
index f1fb68763..c53e834b4 100644
--- a/libs/httpd/luasrc/httpd/module.lua
+++ b/libs/httpd/luasrc/httpd/module.lua
@@ -90,7 +90,7 @@ function Handler.process(self, request, sourcein, sinkout, sinkerr)
end
end
- luci.http.push_response(request, status, response, sourceout, sinkout, sinkerr)
+ luci.http.protocol.push_response(request,response, sourceout, sinkout, sinkerr)
end