diff options
author | Kim Alvefur <zash@zash.se> | 2016-05-22 14:39:20 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-05-22 14:39:20 +0200 |
commit | 0ea8db94300bd49be5cd9528302f28609791858f (patch) | |
tree | 0fbacc0858c54c8c025c98235af9e0f9ce32bca6 /util | |
parent | f66e61803bb5b49d2e13b2b93c5b5e4b05d2233b (diff) | |
parent | 288422c9c30c40727577f896b55596b40e0120f6 (diff) | |
download | prosody-0ea8db94300bd49be5cd9528302f28609791858f.tar.gz prosody-0ea8db94300bd49be5cd9528302f28609791858f.zip |
Merge 0.10->trunk
Diffstat (limited to 'util')
-rw-r--r-- | util/datamanager.lua | 2 | ||||
-rw-r--r-- | util/sql.lua | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/util/datamanager.lua b/util/datamanager.lua index dc98bd13..fb9ba3a4 100644 --- a/util/datamanager.lua +++ b/util/datamanager.lua @@ -17,7 +17,9 @@ local io_open = io.open; local os_remove = os.remove; local os_rename = os.rename; local tonumber = tonumber; +local tostring = tostring; local next = next; +local type = type; local t_insert = table.insert; local t_concat = table.concat; local envloadfile = require"util.envload".envloadfile; diff --git a/util/sql.lua b/util/sql.lua index 843e7dda..6fed1373 100644 --- a/util/sql.lua +++ b/util/sql.lua @@ -2,6 +2,7 @@ local setmetatable, getmetatable = setmetatable, getmetatable; local ipairs, unpack, select = ipairs, table.unpack or unpack, select; --luacheck: ignore 113 local tonumber, tostring = tonumber, tostring; +local type = type; local assert, pcall, xpcall, debug_traceback = assert, pcall, xpcall, debug.traceback; local t_concat = table.concat; local s_char = string.char; |