diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-14 02:33:20 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-14 02:33:20 +0000 |
commit | c374478423b1fa6df31f2e133db77f89ceb91fac (patch) | |
tree | 9efcf32f15f6568df6fd4e8291532bbee3472be2 /core/s2smanager.lua | |
parent | f980ba5734e2a81348f14905147519b26ef8d794 (diff) | |
download | prosody-c374478423b1fa6df31f2e133db77f89ceb91fac.tar.gz prosody-c374478423b1fa6df31f2e133db77f89ceb91fac.zip |
I knew it ;) Fix sending error replies over s2s (though we shouldn't be error'ing on stream:features anyway)
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r-- | core/s2smanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index 530e3087..8b421f13 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -48,7 +48,7 @@ function send_to_host(from_host, to_host, data) elseif host.type == "local" or host.type == "component" then log("error", "Trying to send a stanza to ourselves??") log("error", "Traceback: %s", get_traceback()); - log("error", "Stanza: %s", stanza); + log("error", "Stanza: %s", data); else (host.log or log)("debug", "going to send stanza to "..to_host.." from "..from_host); -- FIXME |