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 | 5c16f18d7269e720647a602864245bbbb70452ed (patch) | |
tree | 369dbf1311ee5fd3f480fb8d457ede809079d955 | |
parent | 9c4985d9d82aaf504ecda0026138608a119b0d78 (diff) | |
download | prosody-5c16f18d7269e720647a602864245bbbb70452ed.tar.gz prosody-5c16f18d7269e720647a602864245bbbb70452ed.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
-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 |