plugins/mod_saslauth.lua
changeset 4049 fe6f4a255fd8
parent 4029 fb027b2811c2
child 4051 d343a76431cf
--- a/plugins/mod_saslauth.lua	Mon Dec 27 19:43:57 2010 +0500
+++ b/plugins/mod_saslauth.lua	Mon Dec 27 19:57:04 2010 +0500
@@ -31,7 +31,7 @@
 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
 };