Author: nextgens
Date: 2006-12-05 17:38:39 +0000 (Tue, 05 Dec 2006)
New Revision: 11237

Modified:
   trunk/freenet/src/freenet/node/Version.java
Log:
We need to up oldLastGoodBuild otherwise node keep on talking with pre-1000 ones


Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-12-05 17:32:11 UTC (rev 
11236)
+++ trunk/freenet/src/freenet/node/Version.java 2006-12-05 17:38:39 UTC (rev 
11237)
@@ -27,14 +27,14 @@
        private static final int buildNumber = 1006;

        /** Oldest build of Fred we will talk to */
-       private static final int oldLastGoodBuild = 990;
-       private static final int newLastGoodBuild = 1002;
+       private static final int oldLastGoodBuild = 1002;
+       private static final int newLastGoodBuild = 1007;
        private static final long transitionTime;

        static {
                final Calendar _cal = 
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
                // year, month - 1 (or constant), day, hour, minute, second
-               _cal.set( 2006, Calendar.DECEMBER, 13, 0, 0, 0 );
+               _cal.set( 2006, Calendar.DECEMBER, 25, 0, 0, 0 );
                transitionTime = _cal.getTimeInMillis();
        }



Reply via email to