mod_tls: Remove debug statement

This commit is contained in:
Kim Alvefur 2013-06-16 15:01:31 +02:00
parent a97742e477
commit 7c51e9ec71

View file

@ -55,7 +55,6 @@ local function can_do_tls(session)
return true;
end
if session.type == "c2s_unauthed" then
module:log("debug", "session.ssl_ctx = ssl_ctx_c2s;")
session.ssl_ctx = ssl_ctx_c2s;
elseif session.type == "s2sin_unauthed" and allow_s2s_tls then
session.ssl_ctx = ssl_ctx_s2sin;