]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix a wide line from 22207
authorNick Mathewson <nickm@torproject.org>
Wed, 5 Jul 2017 21:37:06 +0000 (17:37 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 5 Jul 2017 21:37:06 +0000 (17:37 -0400)
src/or/networkstatus.c

index 3bbe636a99118b66bc64f34b670ba6f11d9691ee..25d79139b97e131faee28ee98de323e39b3d83fc 100644 (file)
@@ -2312,7 +2312,8 @@ networkstatus_dump_bridge_status_to_file(time_t now)
   char fingerprint[FINGERPRINT_LEN+1];
   char *fingerprint_line = NULL;
 
-  if (me && crypto_pk_get_fingerprint(me->identity_pkey, fingerprint, 0) >= 0) {
+  if (me && crypto_pk_get_fingerprint(me->identity_pkey,
+                                      fingerprint, 0) >= 0) {
     tor_asprintf(&fingerprint_line, "fingerprint %s\n", fingerprint);
   } else {
     log_warn(LD_BUG, "Error computing fingerprint for bridge status.");