# HG changeset patch # User Matthew Wild # Date 1259421127 0 # Node ID 18079ede5b6203494e48d667165dfe22f5946382 # Parent 3196dabe8a36d88cead9f3787279a79c6b005770 mod_saslauth: Fix typo in variable name diff -r 3196dabe8a36 -r 18079ede5b62 plugins/mod_saslauth.lua --- a/plugins/mod_saslauth.lua Sat Nov 28 14:09:53 2009 +0000 +++ b/plugins/mod_saslauth.lua Sat Nov 28 15:12:07 2009 +0000 @@ -75,7 +75,7 @@ local function handle_status(session, status) if status == "failure" then - session.sasl_handler = sesion.sasl_handler:clean_clone(); + session.sasl_handler = session.sasl_handler:clean_clone(); elseif status == "success" then local username = nodeprep(session.sasl_handler.username); if not username then -- TODO move this to sessionmanager