From 39265dd72e9285ea61a0d2a16d7e80050ced546e Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 9 Dec 2005 05:37:26 +0000 Subject: In my private little universe, terminals are still 80 columns. Impose a 160-character-per-line limit; this will creep down. svn:r5548 --- src/or/dirserv.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/or/dirserv.c') 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 : ""); -- cgit v1.2.3-54-g00ecf