Software / code / prosody
Changeset
7262:751a4832adb4
util.prosodyctl: Remove unused variable [luacheck]
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Thu, 10 Mar 2016 17:53:36 +0000 |
| parents | 7261:925f848c706d |
| children | 7263:015a711a8ccf 7264:6d97895c2bd7 |
| files | util/prosodyctl.lua |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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;