From: Neel Chauhan Date: Wed, 7 Jun 2023 17:02:33 +0000 (-0700) Subject: Fix the spacing in the 'Your Tor identity key fingerprint is' log line' X-Git-Tag: tor-0.4.8.2-alpha~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a91315f931e5c835f2551fb7f4ee9219bc86be1c;p=thirdparty%2Ftor.git Fix the spacing in the 'Your Tor identity key fingerprint is' log line' --- diff --git a/src/feature/relay/router.c b/src/feature/relay/router.c index dddc0b1de5..f5928127ea 100644 --- 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;