# HG changeset patch # User Kim Alvefur # Date 1366047435 -7200 # Node ID 11f08a27c417111f2da09eea38fcce96805999b7 # Parent 7c631ef43b1189193e318128847d08b669dfeb07 mod_s2s: Add missing space diff -r 7c631ef43b11 -r 11f08a27c417 plugins/mod_s2s/mod_s2s.lua --- 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