Changeset

4943:50f63f07245f

usermanager: Pass session on to auth provider (missing half of commit 0545a574667b) (thanks Zash)
author Matthew Wild <mwild1@gmail.com>
date Sat, 07 Jul 2012 02:32:39 +0100
parents 4941:d46948d3018a
children 4944:72a2eec4204a
files core/usermanager.lua
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/core/usermanager.lua	Thu Jul 05 17:41:57 2012 +0100
+++ b/core/usermanager.lua	Sat Jul 07 02:32:39 2012 +0100
@@ -91,8 +91,8 @@
 	return hosts[host].users.delete_user(username);
 end
 
-function get_sasl_handler(host)
-	return hosts[host].users.get_sasl_handler();
+function get_sasl_handler(host, session)
+	return hosts[host].users.get_sasl_handler(session);
 end
 
 function get_provider(host)