From 728f177473d510bd49b3d37cc5f59a70618225d9 Mon Sep 17 00:00:00 2001 From: jrandom Date: Thu, 29 Dec 2005 13:07:22 +0000 Subject: [PATCH] 2005-12-29 jrandom * Minor fix to the new ERR-ClockSkew to deal with people whose clocks are actually correct --- core/java/src/net/i2p/util/Clock.java | 1 + history.txt | 6 +++++- router/java/src/net/i2p/router/RouterVersion.java | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/core/java/src/net/i2p/util/Clock.java b/core/java/src/net/i2p/util/Clock.java index 4c1148acd..d3f56e214 100644 --- a/core/java/src/net/i2p/util/Clock.java +++ b/core/java/src/net/i2p/util/Clock.java @@ -78,6 +78,7 @@ public class Clock implements Timestamper.UpdateListener { if ((delta < MIN_OFFSET_CHANGE) && (delta > 0 - MIN_OFFSET_CHANGE)) { getLog().debug("Not changing offset since it is only " + delta + "ms"); + _alreadyChanged = true; return; } } diff --git a/history.txt b/history.txt index 53e2d47ef..0ea1b0d0f 100644 --- a/history.txt +++ b/history.txt @@ -1,4 +1,8 @@ -$Id: history.txt,v 1.370 2005/12/26 23:20:29 complication Exp $ +$Id: history.txt,v 1.371 2005/12/27 08:20:55 jrandom Exp $ + +2005-12-29 jrandom + * Minor fix to the new ERR-ClockSkew to deal with people whose clocks are + actually correct 2005-12-27 jrandom * Add a new Status: line on the router console - "ERR-ClockSkew", in case diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index e3914c3bb..6447723c1 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -15,9 +15,9 @@ import net.i2p.CoreVersion; * */ public class RouterVersion { - public final static String ID = "$Revision: 1.318 $ $Date: 2005/12/26 23:20:30 $"; + public final static String ID = "$Revision: 1.319 $ $Date: 2005/12/27 08:20:54 $"; public final static String VERSION = "0.6.1.8"; - public final static long BUILD = 2; + public final static long BUILD = 3; public static void main(String args[]) { System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("Router ID: " + RouterVersion.ID);