From: Kim Alvefur Date: Sat, 28 May 2016 11:10:40 +0000 (+0200) Subject: prosodyctl: Fix typo (thanks av6) X-Git-Url: https://git.enpas.org/?p=prosody.git;a=commitdiff_plain;h=cdd7a6126e7d46717d15cfacf25a2e4c5061ccfc prosodyctl: Fix typo (thanks av6) --- 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