Author: toad
Date: 2008-11-08 20:23:29 +0000 (Sat, 08 Nov 2008)
New Revision: 23439
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1173: Fix updating. MANDATORY IMMEDIATELY.
Sorry folks, it is necessary to get all nodes updated with the new updating
code ASAP, especially as a valid bugfix in 1171 compounds the problem by
interacting with one of the bugs fixed here...
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-11-08 19:42:06 UTC (rev
23438)
+++ trunk/freenet/src/freenet/node/Version.java 2008-11-08 20:23:29 UTC (rev
23439)
@@ -24,11 +24,11 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1172;
+ private static final int buildNumber = 1173;
/** Oldest build of Fred we will talk to */
- private static final int oldLastGoodBuild = 1169;
- private static final int newLastGoodBuild = 1170;
+ private static final int oldLastGoodBuild = 1173;
+ private static final int newLastGoodBuild = 1173;
static final long transitionTime;
static {