diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-07-07 02:32:39 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-07-07 02:32:39 +0100 |
commit | e7bc372d777d323eaea50a88469b6a421d8d81be (patch) | |
tree | e1506652c104ab88979a3d5527ce9e236f474b30 /core | |
parent | b0282b758f6d2abaeb9d3ead0dc9e04c3ad13430 (diff) | |
download | prosody-e7bc372d777d323eaea50a88469b6a421d8d81be.tar.gz prosody-e7bc372d777d323eaea50a88469b6a421d8d81be.zip |
usermanager: Pass session on to auth provider (missing half of commit 0545a574667b) (thanks Zash)
Diffstat (limited to 'core')
-rw-r--r-- | core/usermanager.lua | 4 |
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) |