mod_tls: Suppress debug message if already using encryption

This commit is contained in:
Kim Alvefur 2017-02-25 01:16:31 +01:00
parent fdea58765a
commit 3405d89baa

View file

@ -63,7 +63,9 @@ end
local function can_do_tls(session)
if not session.conn.starttls then
session.log("debug", "Underlying connection does not support STARTTLS");
if not session.secure then
session.log("debug", "Underlying connection does not support STARTTLS");
end
return false;
elseif session.ssl_ctx ~= nil then
return session.ssl_ctx;