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/dirserv.c | |
parent | 0a0f5952e8c6bc8ce514ecba084ea6412f91c625 (diff) | |
download | tor-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.c | 4 |
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 : ""); |