This is an automated email from the git hooks/post-receive script.
dgoulet pushed a commit to branch main in repository tor.
The following commit(s) were added to refs/heads/main by this push: new a91315f931 Fix the spacing in the 'Your Tor identity key fingerprint is' log line' a91315f931 is described below
commit a91315f931e5c835f2551fb7f4ee9219bc86be1c Author: Neel Chauhan neel@neelc.org AuthorDate: Wed Jun 7 10:02:33 2023 -0700
Fix the spacing in the 'Your Tor identity key fingerprint is' log line' --- src/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 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;