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

This commit is contained in:
Kim Alvefur 2013-03-25 08:18:49 +01:00
parent 9c4985d9d8
commit 5c16f18d72

View file

@ -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