aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-04-01 06:23:21 +0000
committerRoger Dingledine <arma@torproject.org>2005-04-01 06:23:21 +0000
commit2ff2db8d2acdd64d1cf28253d2d0aa412fd840bd (patch)
tree64ac19e601407db7623cf0c2212fe9285adcf38b
parentbd75b46ef9b87b6b2343eb704a20f39166585d06 (diff)
downloadtor-2ff2db8d2acdd64d1cf28253d2d0aa412fd840bd.tar.gz
tor-2ff2db8d2acdd64d1cf28253d2d0aa412fd840bd.zip
fix some log spacing problems
svn:r3942
-rw-r--r--src/or/circuitbuild.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index 67be7417a5..6fda449e1c 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -468,8 +468,8 @@ int circuit_send_next_onion_skin(circuit_t *circ) {
log_fn(LOG_NOTICE,"Tor has successfully opened a circuit. Looks like it's working.");
/* XXX009 Log a count of known routers here */
if (server_mode(options) && !check_whether_orport_reachable())
- log_fn(LOG_NOTICE,"Now checking whether ORPort %s %s reachable... (this may take several minutes)",
- options->DirPort ? "and DirPort" : "",
+ log_fn(LOG_NOTICE,"Now checking whether ORPort %s%s reachable... (this may take several minutes)",
+ options->DirPort ? "and DirPort " : "",
options->DirPort ? "are" : "is");
}
circuit_rep_hist_note_result(circ);