summaryrefslogtreecommitdiff
path: root/src/or/dirserv.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-12-10 08:27:01 +0000
committerRoger Dingledine <arma@torproject.org>2005-12-10 08:27:01 +0000
commit9b0a40ec7866005928e49b4717d626e64057c331 (patch)
tree0fe396d96f05202b3aa6af2cfc493e2c732c2d25 /src/or/dirserv.c
parent0a0f5952e8c6bc8ce514ecba084ea6412f91c625 (diff)
downloadtor-9b0a40ec7866005928e49b4717d626e64057c331.tar.gz
tor-9b0a40ec7866005928e49b4717d626e64057c331.zip
crank the max line limit down to 150 chars.
svn:r5550
Diffstat (limited to 'src/or/dirserv.c')
-rw-r--r--src/or/dirserv.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index 7b52b6e62e..606c2385bb 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -437,7 +437,9 @@ authdir_wants_to_reject_router(routerinfo_t *ri,
return -1;
}
if (ri->cache_info.published_on < now-ROUTER_MAX_AGE) {
- notice(LD_DIRSERV, "Publication time for router with nickname '%s' is too far (%d minutes) in the past. Not adding (ContactInfo '%s', platform '%s').",
+ notice(LD_DIRSERV,
+ "Publication time for router with nickname '%s' is too far "
+ "(%d minutes) in the past. Not adding (ContactInfo '%s', platform '%s').",
ri->nickname, (int)((now-ri->cache_info.published_on)/60),
ri->contact_info ? ri->contact_info : "",
ri->platform ? ri->platform : "");