aboutsummaryrefslogtreecommitdiffstats
path: root/core/usermanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2012-07-07 02:32:39 +0100
committerMatthew Wild <mwild1@gmail.com>2012-07-07 02:32:39 +0100
commit82ad5962d98bd25ae3ab06103788b6748c000f9a (patch)
treee1506652c104ab88979a3d5527ce9e236f474b30 /core/usermanager.lua
parentaa6ac860153d3e5ff9d018beb68b11e187dbdda6 (diff)
downloadprosody-82ad5962d98bd25ae3ab06103788b6748c000f9a.tar.gz
prosody-82ad5962d98bd25ae3ab06103788b6748c000f9a.zip
usermanager: Pass session on to auth provider (missing half of commit 0545a574667b) (thanks Zash)
Diffstat (limited to 'core/usermanager.lua')
-rw-r--r--core/usermanager.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/usermanager.lua b/core/usermanager.lua
index 50aee701..3aba5786 100644
--- a/core/usermanager.lua
+++ b/core/usermanager.lua
@@ -91,8 +91,8 @@ function delete_user(username, host)
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)