From 520b853bf4cb64d209965ab2eb9d35bdb0ffa668 Mon Sep 17 00:00:00 2001 From: Gregor Date: Mon, 9 Jul 2018 01:19:19 +0200 Subject: [PATCH] Small typo in ftp server fails compilation There sneaked in an 'o' at the beginning of the file --- lua_modules/ftp/ftpserver.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua_modules/ftp/ftpserver.lua b/lua_modules/ftp/ftpserver.lua index 7aa50757..4782da2c 100644 --- a/lua_modules/ftp/ftpserver.lua +++ b/lua_modules/ftp/ftpserver.lua @@ -1,4 +1,4 @@ -o--[[ A simple ftp server +--[[ A simple ftp server This is my implementation of a FTP server using Github user Neronix's example as inspriration, but as a cleaner Lua implementation that has been