diff options
author | Kim Alvefur <zash@zash.se> | 2025-04-01 18:15:34 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2025-04-01 18:15:34 +0200 |
commit | 7976f21e3e34f7ae1c46446dbed46115a66fa8a4 (patch) | |
tree | 72a592aebab590ca7609d4121c567f079c0296ef /plugins | |
parent | c914afdc4988329f235d78756b73748a1157d7eb (diff) | |
download | prosody-7976f21e3e34f7ae1c46446dbed46115a66fa8a4.tar.gz prosody-7976f21e3e34f7ae1c46446dbed46115a66fa8a4.zip |
mod_s2s: Deal with OpenSSL changing spelling in strings
https://github.com/openssl/openssl/commit/ade08735f9d0ac85d611c5abee8a1df651bbca13
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_s2s.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_s2s.lua b/plugins/mod_s2s.lua index 84ae34b5..7beab34a 100644 --- a/plugins/mod_s2s.lua +++ b/plugins/mod_s2s.lua @@ -999,7 +999,7 @@ local function friendly_cert_error(session) --> string local cert_errors = set.new(session.cert_chain_errors[1]); if cert_errors:contains("certificate has expired") then return "has expired"; - elseif cert_errors:contains("self signed certificate") then + elseif cert_errors:contains("self signed certificate") or cert_errors:contains("self-signed certificate") then return "is self-signed"; elseif cert_errors:contains("no matching DANE TLSA records") then return "does not match any DANE TLSA records"; |