From 9765ae44479b35ed96e1f9ff88e10cd07b86c5d4 Mon Sep 17 00:00:00 2001
From: Nick Mathewson <nickm@torproject.org>
Date: Tue, 30 Dec 2014 10:00:11 -0500
Subject: [PATCH] Missing semicolon; my bad

---
 src/or/circuituse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/or/circuituse.c b/src/or/circuituse.c
index 015270cd25..3322d31e2f 100644
--- a/src/or/circuituse.c
+++ b/src/or/circuituse.c
@@ -1659,7 +1659,7 @@ have_enough_path_info(int need_exit)
   if (need_exit)
     return router_have_consensus_path() == CONSENSUS_PATH_EXIT;
   else
-    return router_have_consensus_path() != CONSENSUS_PATH_UNKNOWN
+    return router_have_consensus_path() != CONSENSUS_PATH_UNKNOWN;
 }
 
 /** Launch a new circuit with purpose <b>purpose</b> and exit node
-- 
GitLab