From d5deb7a99aa3ccad8305e405aa25e170e9bc7e33 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Mon, 23 Jun 2008 19:21:54 +0000 Subject: [PATCH 1/1] * luci/libs: fix syntax error in last commit --- libs/httpd/luasrc/httpd/server.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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$","") -- 2.11.0