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-Tag: 0.8.0~783 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d5deb7a99aa3ccad8305e405aa25e170e9bc7e33;p=oweals%2Fluci.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 2c415009e..90fdd7ed3 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$","")