Software /
code /
prosody-modules
Diff
mod_auth_ldap/mod_auth_ldap.lua @ 305:4c3abf1a9b5a
mod_auth_*, mod_saslauth_muc: Update SASL callbacks to take SASL handler as first argument.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Mon, 27 Dec 2010 20:15:21 +0500 |
parent | 293:d76f47a608ab |
child | 342:8e9e5c7d97ff |
line wrap: on
line diff
--- a/mod_auth_ldap/mod_auth_ldap.lua Mon Dec 27 15:07:16 2010 +0000 +++ b/mod_auth_ldap/mod_auth_ldap.lua Mon Dec 27 20:15:21 2010 +0500 @@ -42,7 +42,7 @@ function provider.get_sasl_handler() local realm = module:get_option("sasl_realm") or module.host; local testpass_authentication_profile = { - plain_test = function(username, password, realm) + plain_test = function(sasl, username, password, realm) local prepped_username = nodeprep(username); if not prepped_username then log("debug", "NODEprep failed on username: %s", username);