mod_auth_internal, mod_auth_internal_hashed: Fixed a global access.

Mon, 07 Jun 2010 02:38:20 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Mon, 07 Jun 2010 02:38:20 +0500
changeset 3191
a475fbce1990
parent 3190
b5f261123013
child 3192
c690e3c5105c

mod_auth_internal, mod_auth_internal_hashed: Fixed a global access.

plugins/mod_auth_internal.lua file | annotate | diff | comparison | revisions
plugins/mod_auth_internal_hashed.lua file | annotate | diff | comparison | revisions
--- a/plugins/mod_auth_internal.lua	Mon Jun 07 02:33:40 2010 +0500
+++ b/plugins/mod_auth_internal.lua	Mon Jun 07 02:38:20 2010 +0500
@@ -76,7 +76,7 @@
 	end
 
 	function provider.get_sasl_handler()
-		local realm = module:get_option("sasl_realm") or origin.host;
+		local realm = module:get_option("sasl_realm") or module.host;
 		local getpass_authentication_profile = {
 			plain = function(username, realm)
 				local prepped_username = nodeprep(username);
--- a/plugins/mod_auth_internal_hashed.lua	Mon Jun 07 02:33:40 2010 +0500
+++ b/plugins/mod_auth_internal_hashed.lua	Mon Jun 07 02:38:20 2010 +0500
@@ -108,7 +108,7 @@
 	end
 
 	function provider.get_sasl_handler()
-		local realm = module:get_option("sasl_realm") or origin.host;
+		local realm = module:get_option("sasl_realm") or module.host;
 		local testpass_authentication_profile = {
 			plain_test = function(username, password, realm)
 				local prepped_username = nodeprep(username);

mercurial