mod_saslauth: Fixed access of globals.

Sun, 18 Oct 2009 18:50:35 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Sun, 18 Oct 2009 18:50:35 +0500
changeset 2014
913c0845ef9a
parent 2013
0bbbc9042361
child 2015
2140c994671e

mod_saslauth: Fixed access of globals.

plugins/mod_saslauth.lua file | annotate | diff | comparison | revisions
--- 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

mercurial