aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-05-30 13:17:28 +0200
committerKim Alvefur <zash@zash.se>2016-05-30 13:17:28 +0200
commit6dbbb8fe6efc5a482d693860e5b716b3560f3739 (patch)
tree8725903a32a44843a489748ade1914fefe5681fb /prosodyctl
parent0963de2358412e9c7591a1aa7f2ba5ac5aa3df76 (diff)
parent45079c02ef1f4edfca446c08a916c61fbf7af9df (diff)
downloadprosody-6dbbb8fe6efc5a482d693860e5b716b3560f3739.tar.gz
prosody-6dbbb8fe6efc5a482d693860e5b716b3560f3739.zip
Merge 0.10->trunk
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl4
1 files changed, 2 insertions, 2 deletions
diff --git a/prosodyctl b/prosodyctl
index e3bc6ffa..4a6ce44e 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -1261,13 +1261,13 @@ function commands.check(arg)
end
if config.get(host, "component_module") == nil
and not x509_verify_identity(host, "_xmpp-client", cert) then
- print(" Not vaild for client connections to "..host..".")
+ print(" Not valid for client connections to "..host..".")
cert_ok = false
end
if (not (config.get(host, "anonymous_login")
or config.get(host, "authentication") == "anonymous"))
and not x509_verify_identity(host, "_xmpp-server", cert) then
- print(" Not vaild for server-to-server connections to "..host..".")
+ print(" Not valid for server-to-server connections to "..host..".")
cert_ok = false
end
end