return the token ... not 0

This commit is contained in:
Wilfried OLLIVIER 2014-11-22 12:16:36 +01:00
parent 45c4a7b50c
commit 5fa5ca9041
1 changed files with 1 additions and 3 deletions

View File

@ -102,9 +102,7 @@ function decrypt(message, key)
sink = ltn12.sink.table(t)
}
print(table.concat(t)) -- print the token
return 0
return table.concat(t); -- return the token
end