diff options
author | Kim Alvefur <zash@zash.se> | 2016-05-30 13:17:28 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-05-30 13:17:28 +0200 |
commit | fcca840db8d7c39253869f27fbca736da6c43909 (patch) | |
tree | 8725903a32a44843a489748ade1914fefe5681fb /prosodyctl | |
parent | e8e531fa1d45b4b454abdac3a170cba16da02b86 (diff) | |
parent | 6b2c577b2097728507d23a6d2b2fa9207a22df9d (diff) | |
download | prosody-fcca840db8d7c39253869f27fbca736da6c43909.tar.gz prosody-fcca840db8d7c39253869f27fbca736da6c43909.zip |
Merge 0.10->trunk
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 |