aboutsummaryrefslogtreecommitdiffstats
path: root/util/prosodyctl.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2016-03-10 17:53:36 +0000
committerMatthew Wild <mwild1@gmail.com>2016-03-10 17:53:36 +0000
commit0d16907ff389fad3fd9135f1f84c4805b5e19687 (patch)
treec813307e1e927950e3eba65551ee395539d817be /util/prosodyctl.lua
parentbd3767353f233524c2df53801155280cacd3b986 (diff)
downloadprosody-0d16907ff389fad3fd9135f1f84c4805b5e19687.tar.gz
prosody-0d16907ff389fad3fd9135f1f84c4805b5e19687.zip
util.prosodyctl: Remove unused variable [luacheck]
Diffstat (limited to 'util/prosodyctl.lua')
-rw-r--r--util/prosodyctl.lua2
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;