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

This commit is contained in:
Neel Chauhan 2023-06-07 10:02:33 -07:00
parent d4f4fb6088
commit a91315f931

View File

@ -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;