tor

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

commit a91315f931e5c835f2551fb7f4ee9219bc86be1c
parent d4f4fb6088cee8e577e28b52f0bd07b87d379ddc
Author: Neel Chauhan <neel@neelc.org>
Date:   Wed,  7 Jun 2023 10:02:33 -0700

Fix the spacing in the 'Your Tor identity key fingerprint is' log line'

Diffstat:
Msrc/feature/relay/router.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/feature/relay/router.c b/src/feature/relay/router.c @@ -911,9 +911,9 @@ router_write_fingerprint(int hashed, int ed25519_identity) goto done; } - log_notice(LD_GENERAL, "Your Tor %s identity key %s fingerprint is '%s %s'", + log_notice(LD_GENERAL, "Your Tor %s identity key %sfingerprint is '%s %s'", hashed ? "bridge's hashed" : "server's", - ed25519_identity ? "ed25519" : "", + ed25519_identity ? "ed25519 " : "", options->Nickname, fingerprint); result = 0;