mod_s2s: Fix reporting of DANE mismatch

Thought it was a case mismatch at first, fixed that, but it changed
nothing because the error was in the leaf part of the errors, not the
chain part.
This commit is contained in:
Kim Alvefur 2023-08-05 20:41:24 +02:00
parent f8a2c4d7ab
commit b5d791c8bf

View file

@ -963,6 +963,8 @@ local function friendly_cert_error(session) --> string
return "has expired";
elseif 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";
end
local chain_errors = set.new(session.cert_chain_errors[2]);
@ -971,7 +973,7 @@ local function friendly_cert_error(session) --> string
end
if chain_errors:contains("certificate has expired") then
return "has an expired certificate chain";
elseif chain_errors:contains("No matching DANE TLSA records") then
elseif chain_errors:contains("no matching DANE TLSA records") then
return "does not match any DANE TLSA records";
end
end