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); send(features);
else else
if session.secure then 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."); (session.log or log)("warn", "No stream features to offer on secure session. Check authentication settings.");
else 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."); (session.log or log)("warn", "No stream features to offer on insecure session. Check encryption and security settings.");
end end
session:close{ condition = "undefined-condition", text = "No stream features to proceed with" }; session:close{ condition = "undefined-condition", text = "No stream features to proceed with" };