aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2009-12-01 21:17:13 +0100
committerTobias Markmann <tm@ayena.de>2009-12-01 21:17:13 +0100
commit8c48053170aa1d6f0bfc057edf6fd7ede1c6a507 (patch)
tree0acacd0adbac5106824e23569fb5e3a49e0e18aa /plugins
parent81e7039c89e147fd315eef738eb2a4505ea7b715 (diff)
downloadprosody-8c48053170aa1d6f0bfc057edf6fd7ede1c6a507.tar.gz
prosody-8c48053170aa1d6f0bfc057edf6fd7ede1c6a507.zip
mod_compression: Removing trailing whitespace.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_compression.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_compression.lua b/plugins/mod_compression.lua
index 6364c27f..8fdf9dcc 100644
--- a/plugins/mod_compression.lua
+++ b/plugins/mod_compression.lua
@@ -160,7 +160,7 @@ module:add_handler({"s2sout_unauthed", "s2sout"}, "compressed", xmlns_compressio
local default_stream_attr = {xmlns = "jabber:server", ["xmlns:stream"] = "http://etherx.jabber.org/streams",
["xmlns:db"] = 'jabber:server:dialback', version = "1.0", to = session.to_host, from = session.from_host};
session.sends2s("<?xml version='1.0'?>");
- session.sends2s(st.stanza("stream:stream", default_stream_attr):top_tag());
+ session.sends2s(st.stanza("stream:stream", default_stream_attr):top_tag());
session.compressed = true;
end
);