aboutsummaryrefslogtreecommitdiffstats
path: root/core/s2smanager.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2009-07-02 00:47:21 +0500
committerWaqas Hussain <waqas20@gmail.com>2009-07-02 00:47:21 +0500
commit46537ca53942b24e91d3a754f87fda08ed21e16e (patch)
tree0907a77e2c02b7c33a5cc97fb484efe2b115ba9c /core/s2smanager.lua
parent584995d0516cf596b96d4688db94d84155a12d1f (diff)
parent3dc21c4fc7da90b0ef739a85351c91ab87a38148 (diff)
downloadprosody-46537ca53942b24e91d3a754f87fda08ed21e16e.tar.gz
prosody-46537ca53942b24e91d3a754f87fda08ed21e16e.zip
Merged with trunk
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r--core/s2smanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index 879084d8..63605d5e 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -253,7 +253,7 @@ function try_connect(host_session, connect_host, connect_port)
local w = conn.write;
host_session.sends2s = function (t) log("debug", "sending: %s", tostring(t)); w(tostring(t)); end
- conn.write(format([[<stream:stream xmlns='jabber:server' xmlns:db='jabber:server:dialback' xmlns:stream='http://etherx.jabber.org/streams' from='%s' to='%s' version='1.0'>]], from_host, to_host));
+ conn.write(format([[<stream:stream xmlns='jabber:server' xmlns:db='jabber:server:dialback' xmlns:stream='http://etherx.jabber.org/streams' from='%s' to='%s' version='1.0' xml:lang='en'>]], from_host, to_host));
log("debug", "Connection attempt in progress...");
return true;
end