aboutsummaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-10-15 02:32:16 +0000
committerRoger Dingledine <arma@torproject.org>2006-10-15 02:32:16 +0000
commit584d598e8a46cb55da4cb2cfe9ddccbf70db26cc (patch)
tree3ee77083a95318b478af0d9fbd6c3a2d6d83b65e /src/or
parent6851d7f85437d4ad6a70bf0aeeda26dc5816c02d (diff)
downloadtor-584d598e8a46cb55da4cb2cfe9ddccbf70db26cc.tar
tor-584d598e8a46cb55da4cb2cfe9ddccbf70db26cc.tar.gz
move the 'time jump' warning back to a higher threshold.
this still occurs on moria sometimes if it's swapping to death. so be it. svn:r8725
Diffstat (limited to 'src/or')
-rw-r--r--src/or/main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/main.c b/src/or/main.c
index 9b7e4470c..81b555c6c 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -1014,8 +1014,7 @@ second_elapsed_callback(int fd, short event, void *args)
/** If more than this many seconds have elapsed, probably the clock
* jumped: doesn't count. */
-#define NUM_JUMPED_SECONDS_BEFORE_WARN 10
-/* This used to be 100, but I cranked it down for Mike Chiussi -RD */
+#define NUM_JUMPED_SECONDS_BEFORE_WARN 100
if (seconds_elapsed < NUM_JUMPED_SECONDS_BEFORE_WARN)
stats_n_seconds_working += seconds_elapsed;
else