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 | 0d16907ff389fad3fd9135f1f84c4805b5e19687 (patch) | |
tree | c813307e1e927950e3eba65551ee395539d817be | |
parent | bd3767353f233524c2df53801155280cacd3b986 (diff) | |
download | prosody-0d16907ff389fad3fd9135f1f84c4805b5e19687.tar.gz prosody-0d16907ff389fad3fd9135f1f84c4805b5e19687.zip |
util.prosodyctl: Remove unused variable [luacheck]
-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; |