Diff

net/xmppserver_listener.lua @ 3333:e6bb6bc4cfbe

xmppserver_listener: Fix variable names I forgot to change in the last commit
author Matthew Wild <mwild1@gmail.com>
date Thu, 08 Jul 2010 14:47:14 +0100
parent 3332:c941d1191709
child 3345:8520cd88b84c
line wrap: on
line diff
--- a/net/xmppserver_listener.lua	Thu Jul 08 14:28:42 2010 +0100
+++ b/net/xmppserver_listener.lua	Thu Jul 08 14:47:14 2010 +0100
@@ -55,7 +55,7 @@
 	end
 	stanza = session.filter("stanzas/in", stanza);
 	if stanza then
-		xpcall(function () core_process_stanza(a, b) end, handleerr);
+		xpcall(function () core_process_stanza(session, stanza) end, handleerr);
 	end
 end