]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix two long lines
authorNick Mathewson <nickm@torproject.org>
Thu, 26 May 2016 16:11:57 +0000 (12:11 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 26 May 2016 16:11:57 +0000 (12:11 -0400)
src/or/router.c

index aa4acf6f64f994e7e41b248c1b443dfa909416c2..01316c1bc216666036231c3aaa574bc035a78cc8 100644 (file)
@@ -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;