# HG changeset patch # User Waqas Hussain # Date 1255873835 -18000 # Node ID 913c0845ef9a4b85d2f5078932332a1a8ea9ba8f # Parent 0bbbc9042361bfe9d0116cd09c0714f4669a2137 mod_saslauth: Fixed access of globals. diff -r 0bbbc9042361 -r 913c0845ef9a plugins/mod_saslauth.lua --- a/plugins/mod_saslauth.lua Sun Oct 18 18:48:34 2009 +0500 +++ b/plugins/mod_saslauth.lua Sun Oct 18 18:50:35 2009 +0500 @@ -83,7 +83,7 @@ return response; end elseif mechanism == "DIGEST-MD5" then - function func(x) return x; end + local function func(x) return x; end local node, domain, realm, decoder = ...; local prepped_node = nodeprep(node); if not prepped_node then @@ -153,7 +153,7 @@ if config.get(session.host or "*", "core", "anonymous_login") then features:tag("mechanism"):text("ANONYMOUS"):up(); else - mechanisms = usermanager_get_supported_methods(session.host or "*"); + local mechanisms = usermanager_get_supported_methods(session.host or "*"); for k, v in pairs(mechanisms) do features:tag("mechanism"):text(k):up(); end