Software /
code /
prosody
Changeset
5474:11f08a27c417
mod_s2s: Add missing space
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 15 Apr 2013 19:37:15 +0200 |
parents | 5472:7c631ef43b11 |
children | 5475:c2c9f07c5d6a |
files | plugins/mod_s2s/mod_s2s.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_s2s/mod_s2s.lua Mon Apr 15 12:30:40 2013 +0100 +++ b/plugins/mod_s2s/mod_s2s.lua Mon Apr 15 19:37:15 2013 +0200 @@ -642,7 +642,7 @@ if must_secure and not session.cert_identity_status then module:log("warn", "Forbidding insecure connection to/from %s", host); if session.direction == "incoming" then - session:close({ condition = "not-authorized", text = "Your server's certificate is invalid, expired, or not trusted by"..session.to_host }); + session:close({ condition = "not-authorized", text = "Your server's certificate is invalid, expired, or not trusted by "..session.to_host }); else -- Close outgoing connections without warning session:close(false); end