Author: toad
Date: 2008-03-05 12:49:06 +0000 (Wed, 05 Mar 2008)
New Revision: 18369
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1121: Fix requests (doh!). Also a couple of minor bugs (double counting of
payload data, ArrayIndexOOB in FailureTable).
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-03-05 12:47:36 UTC (rev
18368)
+++ trunk/freenet/src/freenet/node/Version.java 2008-03-05 12:49:06 UTC (rev
18369)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1120;
+ private static final int buildNumber = 1121;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1113;
- private static final int newLastGoodBuild = 1120;
+ private static final int newLastGoodBuild = 1121;
static final long transitionTime;
static {
final Calendar _cal =
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
// year, month - 1 (or constant), day, hour, minute, second
- _cal.set( 2008, Calendar.MARCH, 7, 0, 0, 0 );
+ _cal.set( 2008, Calendar.MARCH, 6, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}