Software /
code /
prosody
Diff
plugins/mod_auth_anonymous.lua @ 3981:2b0b8fe68df2
util.sasl.*, mod_auth_*, mod_saslauth: Pass SASL handler as first parameter to SASL profile callbacks.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Mon, 27 Dec 2010 19:57:04 +0500 (2010-12-27) |
parent | 3425:26751c628207 |
child | 4160:f08f649b898b |
line wrap: on
line diff
--- a/plugins/mod_auth_anonymous.lua Mon Dec 27 19:43:57 2010 +0500 +++ b/plugins/mod_auth_anonymous.lua Mon Dec 27 19:57:04 2010 +0500 @@ -36,7 +36,7 @@ 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 };