mod_saslauth_muc/mod_saslauth_muc.lua
changeset 305 4c3abf1a9b5a
parent 287 6144fe6161f1
child 404 eb8b005d2a3d
--- a/mod_saslauth_muc/mod_saslauth_muc.lua	Mon Dec 27 15:07:16 2010 +0000
+++ b/mod_saslauth_muc/mod_saslauth_muc.lua	Mon Dec 27 20:15:21 2010 +0500
@@ -30,7 +30,7 @@
 local function remove_handler_for(room, jid) if _rooms[room] then _rooms[room][jid] = nil; end end
 local function create_handler_for(room_jid, jid)
 	_rooms[room_jid] = _rooms[room_jid] or {};
-	_rooms[room_jid][jid] = new_sasl(module.host, { plain = function(username, realm)
+	_rooms[room_jid][jid] = new_sasl(module.host, { plain = function(sasl, username, realm)
 		local muc = hosts[module.host].modules.muc;
 		local room = muc and muc.rooms[room_jid];
 		local password = room and room:get_password();