diff options
author | Roger Dingledine <arma@torproject.org> | 2005-12-10 08:27:01 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-12-10 08:27:01 +0000 |
commit | 9b0a40ec7866005928e49b4717d626e64057c331 (patch) | |
tree | 0fe396d96f05202b3aa6af2cfc493e2c732c2d25 /src/or/circuitbuild.c | |
parent | 0a0f5952e8c6bc8ce514ecba084ea6412f91c625 (diff) | |
download | tor-9b0a40ec7866005928e49b4717d626e64057c331.tar tor-9b0a40ec7866005928e49b4717d626e64057c331.tar.gz |
crank the max line limit down to 150 chars.
svn:r5550
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index a7c8ca878..bdfb984d5 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -485,7 +485,9 @@ inform_testing_reachability(void) if (me->dir_port) tor_snprintf(dirbuf, sizeof(dirbuf), " and DirPort %s:%d", me->address, me->dir_port); - log(LOG_NOTICE, LD_OR, "Now checking whether ORPort %s:%d%s %s reachable... (this may take up to %d minutes -- look for log messages indicating success)", + log(LOG_NOTICE, LD_OR, "Now checking whether ORPort %s:%d%s %s reachable... " + "(this may take up to %d minutes -- look for log " + "messages indicating success)", me->address, me->or_port, me->dir_port ? dirbuf : "", me->dir_port ? "are" : "is", |