From: Jo-Philipp Wich Date: Mon, 23 Jun 2008 19:21:54 +0000 (+0000) Subject: * luci/libs: fix syntax error in last commit X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=d5deb7a99aa3ccad8305e405aa25e170e9bc7e33;p=openwrt-luci.git * luci/libs: fix syntax error in last commit --- diff --git a/libs/httpd/luasrc/httpd/server.lua b/libs/httpd/luasrc/httpd/server.lua index 2c415009e0..90fdd7ed32 100644 --- a/libs/httpd/luasrc/httpd/server.lua +++ b/libs/httpd/luasrc/httpd/server.lua @@ -124,7 +124,7 @@ function Server.create_client_sources(self, client) or "Unexpected EOF" -- Line ok - elseif chunk ~= nil + elseif chunk ~= nil then -- Strip trailing CR chunk = chunk:gsub("\r$","")