summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-05-26 12:11:57 -0400
committerNick Mathewson <nickm@torproject.org>2016-05-26 12:11:57 -0400
commita873ba8edda40e4bc43e887d5f46a50eebb8b2ab (patch)
tree2d28ea76690f27179b878d8b4448faf5978907cd /src
parent36b2b483082eeb43e2aac80cf72b36b35cb48473 (diff)
downloadtor-a873ba8edda40e4bc43e887d5f46a50eebb8b2ab.tar.gz
tor-a873ba8edda40e4bc43e887d5f46a50eebb8b2ab.zip
Fix two long lines
Diffstat (limited to 'src')
-rw-r--r--src/or/router.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/or/router.c b/src/or/router.c
index aa4acf6f64..01316c1bc2 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -2129,7 +2129,8 @@ router_build_fresh_descriptor(routerinfo_t **r, extrainfo_t **e)
ei->cache_info.is_extrainfo = 1;
strlcpy(ei->nickname, get_options()->Nickname, sizeof(ei->nickname));
ei->cache_info.published_on = ri->cache_info.published_on;
- ei->cache_info.signing_key_cert = tor_cert_dup(get_master_signing_key_cert());
+ ei->cache_info.signing_key_cert =
+ tor_cert_dup(get_master_signing_key_cert());
memcpy(ei->cache_info.identity_digest, ri->cache_info.identity_digest,
DIGEST_LEN);
@@ -2197,8 +2198,9 @@ router_build_fresh_descriptor(routerinfo_t **r, extrainfo_t **e)
ri->cache_info.signed_descriptor_digest);
if (ei) {
- tor_assert(! routerinfo_incompatible_with_extrainfo(ri->identity_pkey, ei,
- &ri->cache_info, NULL));
+ tor_assert(!
+ routerinfo_incompatible_with_extrainfo(ri->identity_pkey, ei,
+ &ri->cache_info, NULL));
}
*r = ri;