Diff

plugins/mod_auth_internal.lua @ 3187:a475fbce1990

mod_auth_internal, mod_auth_internal_hashed: Fixed a global access.
author Waqas Hussain <waqas20@gmail.com>
date Mon, 07 Jun 2010 02:38:20 +0500
parent 3186:b5f261123013
child 3219:fd06023cbdcc
line wrap: on
line diff
--- 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);