aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-12-17 21:18:02 +0000
committerMatthew Wild <mwild1@gmail.com>2009-12-17 21:18:02 +0000
commit851ac94df24d3329274099002bb0c7296322bfbb (patch)
tree54a0912586367bb12983a81c1849ea999444ad40 /core
parentf81d945625dd9afada0438b6177c5570bdf1dd45 (diff)
downloadprosody-851ac94df24d3329274099002bb0c7296322bfbb.tar.gz
prosody-851ac94df24d3329274099002bb0c7296322bfbb.zip
s2smanager: More whitespace
Diffstat (limited to 'core')
-rw-r--r--core/s2smanager.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index 1d1e4696..04e5fa5e 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -374,7 +374,6 @@ function streamopened(session, attr)
end
if session.version >= 1.0 then
local features = st.stanza("stream:features");
-
if session.to_host then
hosts[session.to_host].events.fire_event("s2s-stream-features", { session = session, features = features });
else
@@ -391,7 +390,7 @@ function streamopened(session, attr)
-- Send unauthed buffer
-- (stanzas which are fine to send before dialback)
- -- Note that this is *not* the stanza queue (which
+ -- Note that this is *not* the stanza queue (which
-- we can only send if auth succeeds) :)
local send_buffer = session.send_buffer;
if send_buffer and #send_buffer > 0 then
@@ -479,7 +478,6 @@ function mark_connected(session)
end
session.sendq = nil;
end
-
session.srv_hosts = nil;
end
end