util.prosodyctl: Remove unused variable [luacheck]
authorMatthew Wild <mwild1@gmail.com>
Thu, 10 Mar 2016 17:53:36 +0000
changeset 7265 751a4832adb4
parent 7264 925f848c706d
child 7266 015a711a8ccf
child 7267 6d97895c2bd7
util.prosodyctl: Remove unused variable [luacheck]
util/prosodyctl.lua
--- a/util/prosodyctl.lua	Thu Mar 10 17:53:17 2016 +0000
+++ b/util/prosodyctl.lua	Thu Mar 10 17:53:36 2016 +0000
@@ -149,7 +149,7 @@
 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;