xmppserver_listener: Fix variable names I forgot to change in the last commit

Thu, 08 Jul 2010 14:47:14 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Thu, 08 Jul 2010 14:47:14 +0100
changeset 3333
e6bb6bc4cfbe
parent 3332
c941d1191709
child 3334
73f078caf99d

xmppserver_listener: Fix variable names I forgot to change in the last commit

net/xmppserver_listener.lua file | annotate | diff | comparison | revisions
--- 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
 

mercurial