summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeel Chauhan <neel@neelc.org>2023-06-07 10:02:33 -0700
committerNeel Chauhan <neel@neelc.org>2023-06-07 10:02:33 -0700
commita91315f931e5c835f2551fb7f4ee9219bc86be1c (patch)
tree2bb87e893065b80fbfdfdd1060cd49fbcde1f755
parentd4f4fb6088cee8e577e28b52f0bd07b87d379ddc (diff)
downloadtor-a91315f931e5c835f2551fb7f4ee9219bc86be1c.tar.gz
tor-a91315f931e5c835f2551fb7f4ee9219bc86be1c.zip
Fix the spacing in the 'Your Tor identity key fingerprint is' log line'
-rw-r--r--src/feature/relay/router.c4
1 files 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;