Author: toad
Date: 2005-11-24 18:14:24 +0000 (Thu, 24 Nov 2005)
New Revision: 7582
Modified:
trunk/freenet/src/freenet/node/Node.java
trunk/freenet/src/freenet/node/Version.java
Log:
203:
Avoid re-accepting insert after completed handler.
Modified: trunk/freenet/src/freenet/node/Node.java
===================================================================
--- trunk/freenet/src/freenet/node/Node.java 2005-11-24 17:37:58 UTC (rev
7581)
+++ trunk/freenet/src/freenet/node/Node.java 2005-11-24 18:14:24 UTC (rev
7582)
@@ -761,6 +761,7 @@
public void unlockUID(long uid) {
Long l = new Long(uid);
+ completed(uid);
synchronized(runningUIDs) {
if(!runningUIDs.remove(l))
throw new IllegalStateException("Could not unlock "+uid+"!");
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2005-11-24 17:37:58 UTC (rev
7581)
+++ trunk/freenet/src/freenet/node/Version.java 2005-11-24 18:14:24 UTC (rev
7582)
@@ -20,10 +20,10 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- public static final int buildNumber = 202;
+ public static final int buildNumber = 203;
/** Oldest build of Fred we will talk to */
- public static final int lastGoodBuild = 202;
+ public static final int lastGoodBuild = 203;
/** The highest reported build of fred */
public static int highestSeenBuild = buildNumber;