diff options
author | Andrea Shepard <andrea@torproject.org> | 2015-06-01 12:59:14 +0000 |
---|---|---|
committer | Andrea Shepard <andrea@torproject.org> | 2015-06-01 12:59:14 +0000 |
commit | 0e0b65db4f0f0c67bcbb3f51a9e6061bc4c96c5e (patch) | |
tree | c10b78ee986ba214d4fdc4061875919eaa33d4fc /src/or/routerlist.c | |
parent | 90e07ab338cd59caeaeb31a3d207bb34d433b8ab (diff) | |
download | tor-0e0b65db4f0f0c67bcbb3f51a9e6061bc4c96c5e.tar.gz tor-0e0b65db4f0f0c67bcbb3f51a9e6061bc4c96c5e.zip |
Appease make check-spaces
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 7eba13a544..35021964a2 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -4921,7 +4921,8 @@ routerinfo_incompatible_with_extrainfo(const routerinfo_t *ri, * digest256 was in the ri. */ digest256_matches = tor_memeq(ei->digest256, ri->extra_info_digest256, DIGEST256_LEN); - digest256_matches |= tor_mem_is_zero(ri->extra_info_digest256, DIGEST256_LEN); + digest256_matches |= + tor_mem_is_zero(ri->extra_info_digest256, DIGEST256_LEN); /* The identity must match exactly to have been generated at the same time * by the same router. */ |