mod_saslauth: Improve code style

This many returns deserve their own line.

`session["sasl_handler"]` style isn't used anywhere else.
This commit is contained in:
Kim Alvefur 2021-03-18 16:17:45 +01:00
parent 72cb2e0362
commit 139cafdbaf

View file

@ -44,7 +44,9 @@ local function build_reply(status, ret, err_msg)
end
local function handle_status(session, status, ret, err_msg)
if session["sasl_handler"] == nil then return "failure", "connection-timeout", "Connection gone"; end
if not session.sasl_handler then
return "failure", "connection-timeout", "Connection gone";
end
if status == "failure" then
module:fire_event("authentication-failure", { session = session, condition = ret, text = err_msg });
session.sasl_handler = session.sasl_handler:clean_clone();