aboutsummaryrefslogtreecommitdiffstats
path: root/util/prosodyctl.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2012-02-08 16:20:07 +0100
committerMatthew Wild <mwild1@gmail.com>2012-02-08 16:20:07 +0100
commitaf572a612080a6fd777fe2bdcb6780f40ad2fd87 (patch)
treee1fb3b2356572fbfc31b61874e7cc7b501dbbcca /util/prosodyctl.lua
parent84090686e42fa1e0ea3da654e5270d95fcf97434 (diff)
parentd75e3d56b5128e4489f635a412cb12bf02e9f18f (diff)
downloadprosody-af572a612080a6fd777fe2bdcb6780f40ad2fd87.tar.gz
prosody-af572a612080a6fd777fe2bdcb6780f40ad2fd87.zip
Merge with 0.9
Diffstat (limited to 'util/prosodyctl.lua')
-rw-r--r--util/prosodyctl.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/util/prosodyctl.lua b/util/prosodyctl.lua
index 8c58f2cd..128eec2c 100644
--- a/util/prosodyctl.lua
+++ b/util/prosodyctl.lua
@@ -136,7 +136,11 @@ function adduser(params)
return false, "invalid-hostname";
end
- local provider = prosody.hosts[host].users;
+ local host = prosody.hosts[host];
+ if not host then
+ return false, "no-such-host";
+ end
+ local provider = host.users;
if not(provider) or provider.name == "null" then
usermanager.initialize_host(host);
end