# HG changeset patch # User Kim Alvefur # Date 1329855193 -3600 # Node ID 92597f6223de90379df9c04f9bfff69b80b48ca4 # Parent b9e0bd59d8177d6fd89549a0effb4f7d634ad46f core.s2smanager: Fix check_cert_status() for when the stream has no from attr diff -r b9e0bd59d817 -r 92597f6223de core/s2smanager.lua --- a/core/s2smanager.lua Sun Feb 12 17:53:50 2012 +0000 +++ b/core/s2smanager.lua Tue Feb 21 21:13:13 2012 +0100 @@ -410,7 +410,12 @@ (session.log or log)("debug", "certificate chain validation result: valid"); session.cert_chain_status = "valid"; - local host = session.direction == "incoming" and session.from_host or session.to_host + local host; + if session.direction == "incoming" then + host = session.from_host; + else + host = session.to_host; + end -- We'll go ahead and verify the asserted identity if the -- connecting server specified one.