Merge with 0.9
authorMatthew Wild <mwild1@gmail.com>
Sat, 25 Feb 2012 17:21:15 +0000
changeset 4512 eb97612bf42b
parent 4510 b827401581c5 (current diff)
parent 4511 92597f6223de (diff)
child 4518 f2d695d2e31e
Merge with 0.9
core/s2smanager.lua
--- a/core/s2smanager.lua	Sat Feb 25 02:03:26 2012 +0000
+++ b/core/s2smanager.lua	Sat Feb 25 17:21:15 2012 +0000
@@ -512,7 +512,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.