From: Roger Dingledine Date: Tue, 11 Jan 2005 11:54:11 +0000 (+0000) Subject: if somebody starts his tor server in jan 2004 and then fixes his X-Git-Tag: tor-0.1.0.1-rc~483 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=70b3208f0aabf8952e6cf461fba88edc8ea699b8;p=thirdparty%2Ftor.git if somebody starts his tor server in jan 2004 and then fixes his clock, don't make his published uptime be a year. svn:r3337 --- diff --git a/src/or/main.c b/src/or/main.c index 107007f60f..f83c26381a 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -765,7 +765,9 @@ static int prepare_for_poll(void) { stats_prev_global_read_bucket = global_read_bucket; stats_prev_global_write_bucket = global_write_bucket; - stats_n_seconds_working += seconds_elapsed; + /* if more than 10s have elapsed, probably the clock changed: doesn't count. */ + if (seconds_elapsed < 10) + stats_n_seconds_working += seconds_elapsed; assert_all_pending_dns_resolves_ok(); run_scheduled_events(now.tv_sec);