diff options
author | Fernando Fernandez Mancera <ffmancera@riseup.net> | 2018-02-12 12:30:52 +0100 |
---|---|---|
committer | Fernando Fernandez Mancera <ffmancera@riseup.net> | 2018-02-12 12:30:52 +0100 |
commit | 3dd2c1d02298280938cec9022c23a64f6b53aae5 (patch) | |
tree | 73d7349c6e3936a5ba6deb4407ff4fe0da02caf6 /src | |
parent | 5ea993fa5a38353900f9cef3b31f695fc70679b5 (diff) | |
download | tor-3dd2c1d02298280938cec9022c23a64f6b53aae5.tar.gz tor-3dd2c1d02298280938cec9022c23a64f6b53aae5.zip |
Tweaks into router_should_be_dirserver() log msg.
Fixed log message that has been changed in commit 5ea993fa5a.
Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/or/router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c index afba8209e6..89393cea2a 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -1302,7 +1302,7 @@ router_should_be_dirserver(const or_options_t *options, int dir_port) } else { tor_assert(reason); log_notice(LD_DIR, "Not advertising Dir%s (Reason: %s)", - dir_port ? "Port" : "Directory Service support", reason); + dir_port ? "Port" : "ectory Service support", reason); } advertising = new_choice; } |