diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-07-07 02:43:57 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-07-07 02:43:57 +0100 |
commit | f305f2082762ad627aaf018132d81382a5206cbd (patch) | |
tree | 1d1c716a40bc81e050185e108df23b86bc6cb393 /core | |
parent | 4942d8f996e41f2fdb628ceb660d80f00637c111 (diff) | |
parent | 7180665b081fef6f162e5b06564ebf515d2515f7 (diff) | |
download | prosody-f305f2082762ad627aaf018132d81382a5206cbd.tar.gz prosody-f305f2082762ad627aaf018132d81382a5206cbd.zip |
Merge 0.9->trunk
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) |