diff options
author | Daniel Pinto <danielpinto52@gmail.com> | 2016-08-16 17:22:16 +0100 |
---|---|---|
committer | Daniel Pinto <danielpinto52@gmail.com> | 2016-08-16 17:22:16 +0100 |
commit | 3d6ae798cf502d5b4ee08811a57b6c69c5de31eb (patch) | |
tree | d93d4fa15dba3159d8fe639ee4a8433fcdfda834 /src/or/main.c | |
parent | 5e571900b341b52a3176edaecfb6cbab8829efd1 (diff) | |
download | tor-3d6ae798cf502d5b4ee08811a57b6c69c5de31eb.tar.gz tor-3d6ae798cf502d5b4ee08811a57b6c69c5de31eb.zip |
Fixes inconsistent version prefix in log messages.
Fixes #15381.
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 261118a81e..4dbd9a005b 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -2800,7 +2800,7 @@ tor_init(int argc, char *argv[]) { const char *version = get_version(); - log_notice(LD_GENERAL, "Tor v%s running on %s with Libevent %s, " + log_notice(LD_GENERAL, "Tor %s running on %s with Libevent %s, " "OpenSSL %s and Zlib %s.", version, get_uname(), tor_libevent_get_version_str(), |