diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-07-05 17:37:06 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-07-05 17:37:06 -0400 |
commit | 9919638e98000b14982810db28e3f37fd1106bc9 (patch) | |
tree | 42e018f7b0ef4658117415a9a849fe9f7bafb306 | |
parent | 2251667ff239d508be6b01a59a47d0c235da2465 (diff) | |
download | tor-9919638e98000b14982810db28e3f37fd1106bc9.tar.gz tor-9919638e98000b14982810db28e3f37fd1106bc9.zip |
Fix a wide line from 22207
-rw-r--r-- | src/or/networkstatus.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/networkstatus.c b/src/or/networkstatus.c index 3bbe636a99..25d79139b9 100644 --- a/src/or/networkstatus.c +++ b/src/or/networkstatus.c @@ -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."); |