diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-01-23 11:18:28 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-01-23 11:18:28 -0500 |
commit | 034e2788f812852ed530b42291b3e07c7dc85d84 (patch) | |
tree | 8bb2f9216b88e3d6483f57f03c33bded5cf27a64 /src/or/routerlist.c | |
parent | 7322de15dc2f0858291f40df1a55a66c80b7fda9 (diff) | |
download | tor-034e2788f812852ed530b42291b3e07c7dc85d84.tar.gz tor-034e2788f812852ed530b42291b3e07c7dc85d84.zip |
whitespace fixes
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index dacf980342..fe92ac0050 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -1442,7 +1442,7 @@ router_pick_directory_server_impl(dirinfo_type_t type, int flags, const networkstatus_t *consensus = networkstatus_get_latest_consensus(); const int requireother = ! (flags & PDS_ALLOW_SELF); const int fascistfirewall = ! (flags & PDS_IGNORE_FASCISTFIREWALL); - const int no_serverdesc_fetching = (flags & PDS_NO_EXISTING_SERVERDESC_FETCH); + const int no_serverdesc_fetching =(flags & PDS_NO_EXISTING_SERVERDESC_FETCH); const int no_microdesc_fetching = (flags & PDS_NO_EXISTING_MICRODESC_FETCH); const int for_guard = (flags & PDS_FOR_GUARD); int try_excluding = 1, n_excluded = 0, n_busy = 0; @@ -4265,7 +4265,8 @@ MOCK_IMPL(STATIC void, initiate_descriptor_downloads, if (b64_256) { digest256_to_base64(cp, smartlist_get(digests, lo)); } else { - base16_encode(cp, enc_digest_len, smartlist_get(digests, lo), digest_len); + base16_encode(cp, enc_digest_len, smartlist_get(digests, lo), + digest_len); } smartlist_add(tmp, cp); } @@ -4372,7 +4373,6 @@ launch_descriptor_downloads(int purpose, "tried downloading descriptors recently. Downloading.", descname); } - } } |