diff options
author | Kim Alvefur <zash@zash.se> | 2016-05-28 13:10:40 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-05-28 13:10:40 +0200 |
commit | 9cf9b9f63a1283c8019497706d1abd6ec301f2f8 (patch) | |
tree | 01b0e1073ebd938f4401fc810fb4940cedf45bc3 /prosodyctl | |
parent | 609c8e58a269587412e5aa555d06bc5725a574bc (diff) | |
download | prosody-9cf9b9f63a1283c8019497706d1abd6ec301f2f8.tar.gz prosody-9cf9b9f63a1283c8019497706d1abd6ec301f2f8.zip |
prosodyctl: Fix typo (thanks av6)
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |