]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix the spacing in the 'Your Tor identity key fingerprint is' log line'
authorNeel Chauhan <neel@neelc.org>
Wed, 7 Jun 2023 17:02:33 +0000 (10:02 -0700)
committerNeel Chauhan <neel@neelc.org>
Wed, 7 Jun 2023 17:02:33 +0000 (10:02 -0700)
src/feature/relay/router.c

index dddc0b1de5b1fd6a1e7937121ce4fe72719c364e..f5928127ea1da93783d07bed81f83db7d694e83f 100644 (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;