diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-26 22:18:26 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-26 22:18:26 +0000 |
commit | 7e9f14dae5d846c83578d6235895a8607362aed9 (patch) | |
tree | be4cbbd79bb0ddd8fc8164e59ca9838a5004d775 /net | |
parent | 44f9d3a29ce1087bc34be3934e8eeee5568a792c (diff) | |
download | prosody-7e9f14dae5d846c83578d6235895a8607362aed9.tar.gz prosody-7e9f14dae5d846c83578d6235895a8607362aed9.zip |
Fix a waqas copy/paste error. It was my fault again apparently.
Diffstat (limited to 'net')
-rw-r--r-- | net/xmppserver_listener.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/xmppserver_listener.lua b/net/xmppserver_listener.lua index 5ca25a27..15ce0b23 100644 --- a/net/xmppserver_listener.lua +++ b/net/xmppserver_listener.lua @@ -130,6 +130,7 @@ function xmppserver.register_outgoing(conn, session) -- FIXME: Below function should be session,stanza - and xmlhandlers should use :method() notation to call, -- this will avoid the useless indirection we have atm -- (I'm on a mission, no time to fix now) + local function handleerr(err) print("Traceback:", err, debug.traceback()); end session.stanza_dispatch = function (stanza) return select(2, xpcall(function () return core_process_stanza(session, stanza); end, handleerr)); end end |