aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-05-28 13:10:40 +0200
committerKim Alvefur <zash@zash.se>2016-05-28 13:10:40 +0200
commit7f091c5a3bc0de7d116fca5f9d5e170c0752efaf (patch)
tree01b0e1073ebd938f4401fc810fb4940cedf45bc3 /prosodyctl
parentb44930be7ec51bc82cdc977f9d4320bb747ffc40 (diff)
downloadprosody-7f091c5a3bc0de7d116fca5f9d5e170c0752efaf.tar.gz
prosody-7f091c5a3bc0de7d116fca5f9d5e170c0752efaf.zip
prosodyctl: Fix typo (thanks av6)
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl4
1 files changed, 2 insertions, 2 deletions
diff --git a/prosodyctl b/prosodyctl
index c8366faf..8ada3b9b 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