mod_saslauth: Rename variable 'aret' to 'ok' as per convention

This commit is contained in:
Matthew Wild 2010-07-12 16:44:56 +01:00
parent 8293d237d5
commit 0dbf22f2ba

View file

@ -97,8 +97,8 @@ local function handle_status(session, status, ret, err_msg)
local username = nodeprep(session.sasl_handler.username);
if not(require_provisioning) or usermanager_user_exists(username, session.host) then
local aret, err = sm_make_authenticated(session, session.sasl_handler.username);
if aret then
local ok, err = sm_make_authenticated(session, session.sasl_handler.username);
if ok then
session.sasl_handler = nil;
session:reset_stream();
else