diff options
author | Kim Alvefur <zash@zash.se> | 2018-09-30 14:16:49 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-09-30 14:16:49 +0200 |
commit | 1efa591f74835bb1c88037b24d9ffbf8dfef00f0 (patch) | |
tree | aeaa7f3075ffed363c181da23e13ea40964ea697 /plugins | |
parent | 603ec72b5fbfde449b8d24d9fd0665b7ff84f945 (diff) | |
download | prosody-1efa591f74835bb1c88037b24d9ffbf8dfef00f0.tar.gz prosody-1efa591f74835bb1c88037b24d9ffbf8dfef00f0.zip |
mod_admin_telnet: Rename variable to avoid name clash [luacheck]
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_admin_telnet.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua index 0a171059..1a73914e 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -34,8 +34,8 @@ local commands = module:shared("commands") local def_env = module:shared("env"); local default_env_mt = { __index = def_env }; -local function redirect_output(_G, session) - local env = setmetatable({ print = session.print }, { __index = function (t, k) return rawget(_G, k); end }); +local function redirect_output(target, session) + local env = setmetatable({ print = session.print }, { __index = function (t, k) return rawget(target, k); end }); env.dofile = function(name) local f, err = envloadfile(name, env); if not f then return f, err; end |