# HG changeset patch # User Kim Alvefur # Date 1399012049 -7200 # Node ID afcba9737ac3610e21444a1c28f60ae418ab257d # Parent cf0f7caa885eeedd40c2ebd8e11e8937c850ed82 prosodyctl: Use correct variable in check certs diff -r cf0f7caa885e -r afcba9737ac3 prosodyctl --- a/prosodyctl Fri May 02 08:21:56 2014 +0200 +++ b/prosodyctl Fri May 02 08:27:29 2014 +0200 @@ -1115,8 +1115,8 @@ print(" Not vaild for client connections to "..host..".") cert_ok = false end - if (not (config.get(name, "anonymous_login") - or config.get(name, "authentication") == "anonymous")) + if (not (config.get(host, "anonymous_login") + or config.get(host, "authentication") == "anonymous")) and not x509_verify_identity(host, "_xmpp-client", cert) then print(" Not vaild for server-to-server connections to "..host..".") cert_ok = false