Changeset

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
parents 3332:c941d1191709
children 3334:73f078caf99d
files net/xmppserver_listener.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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