Author: toad
Date: 2005-12-02 17:32:28 +0000 (Fri, 02 Dec 2005)
New Revision: 7651

Modified:
   trunk/freenet/src/freenet/node/InsertSender.java
   trunk/freenet/src/freenet/node/Version.java
Log:
262:
Minor fix.
Mandatory to get rid of all the sleeping folks with live nodes!

Modified: trunk/freenet/src/freenet/node/InsertSender.java
===================================================================
--- trunk/freenet/src/freenet/node/InsertSender.java    2005-12-01 22:27:42 UTC 
(rev 7650)
+++ trunk/freenet/src/freenet/node/InsertSender.java    2005-12-02 17:32:28 UTC 
(rev 7651)
@@ -452,6 +452,8 @@
                return "TIMED OUT";
         if(status == GENERATED_REJECTED_OVERLOAD)
                return "GENERATED REJECTED OVERLOAD";
+        if(status == ROUTE_REALLY_NOT_FOUND)
+               return "ROUTE REALLY NOT FOUND";
         return "UNKNOWN STATUS CODE: "+status;
     }


Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2005-12-01 22:27:42 UTC (rev 
7650)
+++ trunk/freenet/src/freenet/node/Version.java 2005-12-02 17:32:28 UTC (rev 
7651)
@@ -20,10 +20,10 @@
        public static final String protocolVersion = "1.0";

        /** The build number of the current revision */
-       public static final int buildNumber = 261;
+       public static final int buildNumber = 262;

        /** Oldest build of Fred we will talk to */
-       public static final int lastGoodBuild = 261;
+       public static final int lastGoodBuild = 262;

        /** The highest reported build of fred */
        public static int highestSeenBuild = buildNumber;


Reply via email to