mod_c2s: Swap comments

This commit is contained in:
Kim Alvefur 2020-04-19 13:04:12 +02:00
parent 25685a3d1b
commit a63e5be1b7

View file

@ -111,10 +111,10 @@ function stream_callbacks.streamopened(session, attr)
send(features);
else
if session.secure then
-- Normally STARTTLS would be offered
-- Here SASL should be offered
(session.log or log)("warn", "No stream features to offer on secure session. Check authentication settings.");
else
-- Here SASL should be offered
-- Normally STARTTLS would be offered
(session.log or log)("warn", "No stream features to offer on insecure session. Check encryption and security settings.");
end
session:close{ condition = "undefined-condition", text = "No stream features to proceed with" };