Diff

util/prosodyctl.lua @ 7262:751a4832adb4

util.prosodyctl: Remove unused variable [luacheck]
author Matthew Wild <mwild1@gmail.com>
date Thu, 10 Mar 2016 17:53:36 +0000
parent 7259:d8300985f2bb
child 7457:5e18416881bb
line wrap: on
line diff
--- 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;