aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-09-28 14:45:02 +0200
committerKim Alvefur <zash@zash.se>2016-09-28 14:45:02 +0200
commit6b655890722c2c0e501a409c633343d5eb6429d9 (patch)
tree55ddb0dd0e5662805f2f159a7cb045c5664b5b73 /plugins
parent2a51502adf91639882d526ea307838d892462562 (diff)
parentec7e00c3e5da703a003e57f23e5e1886b60b2164 (diff)
downloadprosody-6b655890722c2c0e501a409c633343d5eb6429d9.tar.gz
prosody-6b655890722c2c0e501a409c633343d5eb6429d9.zip
Merge 0.9->0.10
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_s2s/mod_s2s.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua
index d190d631..67af6a14 100644
--- a/plugins/mod_s2s/mod_s2s.lua
+++ b/plugins/mod_s2s/mod_s2s.lua
@@ -373,7 +373,7 @@ function stream_callbacks.streamopened(session, attr)
elseif session.direction == "outgoing" then
session.notopen = nil;
if not attr.id then
- log("error", "Stream response from %s did not give us a stream id!", session.to_host);
+ log("warn", "Stream response did not give us a stream id!");
session:close({ condition = "undefined-condition", text = "Missing stream ID" });
return;
end