mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
72cb2e0362
commit
139cafdbaf
1 changed files with 3 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue