[tor-commits] [tor/master] Missing semicolon; my bad
nickm at torproject.org
nickm at torproject.org
Tue Dec 30 15:00:16 UTC 2014
commit 9765ae44479b35ed96e1f9ff88e10cd07b86c5d4
Author: Nick Mathewson <nickm at torproject.org>
Date: Tue Dec 30 10:00:11 2014 -0500
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 015270c..3322d31 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
More information about the tor-commits
mailing list