diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-12-09 05:37:26 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-12-09 05:37:26 +0000 |
commit | 39265dd72e9285ea61a0d2a16d7e80050ced546e (patch) | |
tree | 1affb9adb311c31f0c4e4613653940713655c21c /src/or/dirserv.c | |
parent | 95e471c9a65f36776cb1fb9ccbcef4890640d7f4 (diff) | |
download | tor-39265dd72e9285ea61a0d2a16d7e80050ced546e.tar.gz tor-39265dd72e9285ea61a0d2a16d7e80050ced546e.zip |
In my private little universe, terminals are still 80 columns. Impose a 160-character-per-line limit; this will creep down.
svn:r5548
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 3dbe204286..7b52b6e62e 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -427,7 +427,9 @@ authdir_wants_to_reject_router(routerinfo_t *ri, /* Is there too much clock skew? */ now = time(NULL); if (ri->cache_info.published_on > now+ROUTER_ALLOW_SKEW) { - notice(LD_DIRSERV, "Publication time for nickname '%s' is too far (%d minutes) in the future; possible clock skew. Not adding (ContactInfo '%s', platform '%s').", + notice(LD_DIRSERV, "Publication time for nickname '%s' is too far " + "(%d minutes) in the future; possible clock skew. Not adding " + "(ContactInfo '%s', platform '%s').", ri->nickname, (int)((ri->cache_info.published_on-now)/60), ri->contact_info ? ri->contact_info : "", ri->platform ? ri->platform : ""); |