plugins/mod_auth_internal_hashed.lua

changeset 3981
2b0b8fe68df2
parent 3454
8cf30367aa4f
--- a/plugins/mod_auth_internal_hashed.lua	Mon Dec 27 19:43:57 2010 +0500
+++ b/plugins/mod_auth_internal_hashed.lua	Mon Dec 27 19:57:04 2010 +0500
@@ -138,7 +138,7 @@
 	function provider.get_sasl_handler()
 		local realm = module:get_option("sasl_realm") or module.host;
 		local testpass_authentication_profile = {
-			plain_test = function(username, password, realm)
+			plain_test = function(sasl, username, password, realm)
 				local prepped_username = nodeprep(username);
 				if not prepped_username then
 					log("debug", "NODEprep failed on username: %s", username);
@@ -146,7 +146,7 @@
 				end
 				return usermanager.test_password(prepped_username, realm, password), true;
 			end,
-			scram_sha_1 = function(username, realm)
+			scram_sha_1 = function(sasl, username, realm)
 				local credentials = datamanager.load(username, host, "accounts");
 				if not credentials then return; end
 				if credentials.password then

mercurial