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

@ -34,7 +34,7 @@ local xmlns_stanzas ='urn:ietf:params:xml:ns:xmpp-stanzas';
local new_sasl = require "util.sasl".new;
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
};