util.sasl.*, mod_auth_*, mod_saslauth: Pass SASL handler as first parameter to SASL profile callbacks.

This commit is contained in:
Waqas Hussain 2010-12-27 19:57:04 +05:00
parent a4d4abfeb7
commit aa144af70e
8 changed files with 12 additions and 12 deletions

View file

@ -36,7 +36,7 @@ function new_default_provider(host)
function provider.get_sasl_handler()
local realm = module:get_option("sasl_realm") or module.host;
local anonymous_authentication_profile = {
anonymous = function(username, realm)
anonymous = function(sasl, username, realm)
return true; -- for normal usage you should always return true here
end
};