[tor-commits] [tor/master] fix another confusing whitespace instance

arma at torproject.org arma at torproject.org
Mon Sep 30 05:48:26 UTC 2013


commit 0d8632e5853935873562b2f9e61beb7c7a0140e4
Author: Roger Dingledine <arma at torproject.org>
Date:   Mon Sep 30 01:47:24 2013 -0400

    fix another confusing whitespace instance
---
 src/or/entrynodes.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c
index ff72f6e..2e045e0 100644
--- a/src/or/entrynodes.c
+++ b/src/or/entrynodes.c
@@ -396,8 +396,8 @@ add_an_entry_guard(const node_t *chosen, int reset_status, int prepend,
            node_describe(node));
   strlcpy(entry->nickname, node_get_nickname(node), sizeof(entry->nickname));
   memcpy(entry->identity, node->identity, DIGEST_LEN);
-  entry->is_dir_cache = node_is_dir(node) &&
-    node->rs && node->rs->version_supports_microdesc_cache;
+  entry->is_dir_cache = node_is_dir(node) && node->rs &&
+                        node->rs->version_supports_microdesc_cache;
   if (get_options()->UseBridges && node_is_a_configured_bridge(node))
     entry->is_dir_cache = 1;
 



More information about the tor-commits mailing list