diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-06-23 19:21:54 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-06-23 19:21:54 +0000 |
commit | d5deb7a99aa3ccad8305e405aa25e170e9bc7e33 (patch) | |
tree | 858ca917b223bfba442cbcd15f35bb43e261436e /libs | |
parent | 520b4060a7474aab2f4a4b9b07872a38478d29c6 (diff) |
* luci/libs: fix syntax error in last commit
Diffstat (limited to 'libs')
-rw-r--r-- | libs/httpd/luasrc/httpd/server.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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$","") |