diff options
author | Kim Alvefur <zash@zash.se> | 2013-03-25 08:18:49 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-03-25 08:18:49 +0100 |
commit | 82e45d16423dd6543c4c307f65c311545b8895a3 (patch) | |
tree | 369dbf1311ee5fd3f480fb8d457ede809079d955 /plugins/mod_s2s | |
parent | 27377b993617a2840ef7f97948676c3d4a6b181a (diff) | |
download | prosody-82e45d16423dd6543c4c307f65c311545b8895a3.tar.gz prosody-82e45d16423dd6543c4c307f65c311545b8895a3.zip |
mod_s2s: session.from_host does not allways exist on incoming connections, true and nil or "our hostname" does not evaluate to what we want here
Diffstat (limited to 'plugins/mod_s2s')
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua index ec969cc3..dc4d727d 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -211,7 +211,7 @@ end --- Helper to check that a session peer's certificate is valid local function check_cert_status(session) - local host = session.direction == "incoming" and session.from_host or session.to_host + local host = session.direction == "outgoing" and session.to_host or session.from_host local conn = session.conn:socket() local cert if conn.getpeercertificate then |