diff options
author | Matthew Wild <mwild1@gmail.com> | 2025-04-02 17:27:39 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2025-04-02 17:27:39 +0100 |
commit | 3acd17a59eff97d32a1fa75fc8d0876fee7b5e54 (patch) | |
tree | 75045e763b78a33fdc8e13e396c5fef3ee5af65a | |
parent | c701571b95706403c7c714d48d2966206265499e (diff) | |
download | prosody-3acd17a59eff97d32a1fa75fc8d0876fee7b5e54.tar.gz prosody-3acd17a59eff97d32a1fa75fc8d0876fee7b5e54.zip |
prosodyctl check certs: Use correct hostname in warning message about HTTPS
-rw-r--r-- | util/prosodyctl/check.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua index 75ff5da4..622e475e 100644 --- a/util/prosodyctl/check.lua +++ b/util/prosodyctl/check.lua @@ -1313,7 +1313,7 @@ local function check(arg) http_loaded = false; end if http_loaded and not x509_verify_identity(http_host, nil, cert) then - print(" Not valid for HTTPS connections to "..host..".") + print(" Not valid for HTTPS connections to "..http_host..".") cert_ok = false end if use_dane then |