]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Whitespace fixes
authorNick Mathewson <nickm@torproject.org>
Tue, 18 Sep 2012 20:16:17 +0000 (16:16 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 18 Sep 2012 20:16:17 +0000 (16:16 -0400)
src/or/circuitbuild.c

index 6bd1eb32e706cd379926b93430353b2b0252a6ee..ffc7b5eaf8f74ba8c63c2a76e778b93d1a0e3ffa 100644 (file)
@@ -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,