diff options
author | Matthew Wild <mwild1@gmail.com> | 2016-03-10 17:53:36 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2016-03-10 17:53:36 +0000 |
commit | 74f4177db0d98a050df1693c5f3b061559865a64 (patch) | |
tree | c813307e1e927950e3eba65551ee395539d817be /util/prosodyctl.lua | |
parent | e3cc87e30eeb473fcdc2c83745014128babdd2db (diff) | |
download | prosody-74f4177db0d98a050df1693c5f3b061559865a64.tar.gz prosody-74f4177db0d98a050df1693c5f3b061559865a64.zip |
util.prosodyctl: Remove unused variable [luacheck]
Diffstat (limited to 'util/prosodyctl.lua')
-rw-r--r-- | util/prosodyctl.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/prosodyctl.lua b/util/prosodyctl.lua index 207b3763..cde1cdd4 100644 --- a/util/prosodyctl.lua +++ b/util/prosodyctl.lua @@ -149,7 +149,7 @@ local function adduser(params) end local function user_exists(params) - local user, host, password = nodeprep(params.user), nameprep(params.host), params.password; + local user, host = nodeprep(params.user), nameprep(params.host); storagemanager.initialize_host(host); local provider = prosody.hosts[host].users; |