Author: toad
Date: 2006-02-22 16:56:42 +0000 (Wed, 22 Feb 2006)
New Revision: 8111
Modified:
trunk/freenet/src/freenet/client/async/ClientGetter.java
trunk/freenet/src/freenet/node/Version.java
Log:
466: Make MaxRetries work in FCP (bugfix)
Modified: trunk/freenet/src/freenet/client/async/ClientGetter.java
===================================================================
--- trunk/freenet/src/freenet/client/async/ClientGetter.java 2006-02-22
16:09:17 UTC (rev 8110)
+++ trunk/freenet/src/freenet/client/async/ClientGetter.java 2006-02-22
16:56:42 UTC (rev 8111)
@@ -36,7 +36,7 @@
public void start() throws FetchException {
try {
- currentState = new SingleFileFetcher(this, this, new
ClientMetadata(), uri, ctx, actx, getPriorityClass(), 0, false, null, true);
+ currentState = new SingleFileFetcher(this, this, new
ClientMetadata(), uri, ctx, actx, ctx.maxNonSplitfileRetries, 0, false, null,
true);
currentState.schedule();
} catch (MalformedURLException e) {
throw new FetchException(FetchException.INVALID_URI, e);
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-02-22 16:09:17 UTC (rev
8110)
+++ trunk/freenet/src/freenet/node/Version.java 2006-02-22 16:56:42 UTC (rev
8111)
@@ -20,7 +20,7 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 465;
+ private static final int buildNumber = 466;
/** Oldest build of Fred we will talk to */
private static final int lastGoodBuild = 403;