tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 9919638e98000b14982810db28e3f37fd1106bc9
parent 2251667ff239d508be6b01a59a47d0c235da2465
Author: Nick Mathewson <nickm@torproject.org>
Date:   Wed,  5 Jul 2017 17:37:06 -0400

Fix a wide line from 22207

Diffstat:
Msrc/or/networkstatus.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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.");