diff options
author | Kim Alvefur <zash@zash.se> | 2015-05-18 21:48:58 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-05-18 21:48:58 +0200 |
commit | 72dde1c231c9d71c5ae5fe1d2d5fafc029e32c17 (patch) | |
tree | 790282d6211cf5cd84441a33e832e4d77bb92402 | |
parent | 3f9b6834573752a09e06196792bcce7774fd6f1e (diff) | |
download | prosody-72dde1c231c9d71c5ae5fe1d2d5fafc029e32c17.tar.gz prosody-72dde1c231c9d71c5ae5fe1d2d5fafc029e32c17.zip |
mod_tls: Treat session.ssl_ctx being false as a signal that TLS is disabled
-rw-r--r-- | plugins/mod_tls.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua index 85fa172a..d1138e1c 100644 --- a/plugins/mod_tls.lua +++ b/plugins/mod_tls.lua @@ -61,7 +61,7 @@ do end local function can_do_tls(session) - if not session.conn.starttls then + if session.ssl_ctx == false or not session.conn.starttls then return false; elseif session.ssl_ctx then return true; |