lua 5.2 compatibility (#14)

compatibility update - making a few changes in next commit...
This commit is contained in:
Kan18
2019-07-20 16:19:30 -06:00
committed by kepler155c
parent 9ce61b5d98
commit 09be81be27
8 changed files with 19 additions and 18 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ local function sambaConnection(socket)
end
local ret
local s, m = pcall(function()
ret = fn(unpack(msg.args))
ret = fn(table.unpack(msg.args))
end)
if not s and m then
_G.printError('samba: ' .. m)