diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-09-18 16:16:17 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-09-18 16:16:17 -0400 |
commit | aca325eb0c6b34ba0e1ef8df16c1cf44a98f9b6f (patch) | |
tree | 24e008b0d73035b469bc7731f7faf34be27d95c7 /src/or/circuitbuild.c | |
parent | 4bfed4378d3b101757e50b058e3d462fa88ecfd3 (diff) | |
download | tor-aca325eb0c6b34ba0e1ef8df16c1cf44a98f9b6f.tar tor-aca325eb0c6b34ba0e1ef8df16c1cf44a98f9b6f.tar.gz |
Whitespace fixes
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 6bd1eb32e..ffc7b5eaf 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -2646,11 +2646,11 @@ pathbias_count_first_hop(origin_circuit_t *circ) char *rate_msg = NULL; /* Completely ignore one hop circuits */ - if (circ->build_state->onehop_tunnel || - circ->build_state->desired_path_len == 1) { + if (circ->build_state->onehop_tunnel || + circ->build_state->desired_path_len == 1) { /* Check for inconsistency */ - if (circ->build_state->desired_path_len != 1 || - !circ->build_state->onehop_tunnel) { + if (circ->build_state->desired_path_len != 1 || + !circ->build_state->onehop_tunnel) { if ((rate_msg = rate_limit_log(&first_hop_notice_limit, approx_time()))) { log_info(LD_BUG, @@ -2756,11 +2756,11 @@ pathbias_count_success(origin_circuit_t *circ) char *rate_msg = NULL; /* Ignore one hop circuits */ - if (circ->build_state->onehop_tunnel || - circ->build_state->desired_path_len == 1) { + if (circ->build_state->onehop_tunnel || + circ->build_state->desired_path_len == 1) { /* Check for consistency */ - if (circ->build_state->desired_path_len != 1 || - !circ->build_state->onehop_tunnel) { + if (circ->build_state->desired_path_len != 1 || + !circ->build_state->onehop_tunnel) { if ((rate_msg = rate_limit_log(&success_notice_limit, approx_time()))) { log_info(LD_BUG, |