diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-12-30 10:00:11 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-12-30 10:00:11 -0500 |
commit | 9765ae44479b35ed96e1f9ff88e10cd07b86c5d4 (patch) | |
tree | 520095c1bb0f97533e0f03a2b18487d876016495 | |
parent | 03e9aa094185e55e120f2fffa01da62b5a7b44df (diff) | |
download | tor-9765ae44479b35ed96e1f9ff88e10cd07b86c5d4.tar.gz tor-9765ae44479b35ed96e1f9ff88e10cd07b86c5d4.zip |
Missing semicolon; my bad
-rw-r--r-- | src/or/circuituse.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |