Author: toad
Date: 2006-03-09 18:54:21 +0000 (Thu, 09 Mar 2006)
New Revision: 8202
Modified:
trunk/freenet/src/freenet/node/Version.java
trunk/freenet/src/freenet/node/fcp/ModifyPersistentRequest.java
Log:
512: Trivial fix, shouldn't affect behaviour.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-03-09 18:50:12 UTC (rev
8201)
+++ trunk/freenet/src/freenet/node/Version.java 2006-03-09 18:54:21 UTC (rev
8202)
@@ -20,7 +20,7 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 511;
+ private static final int buildNumber = 512;
/** Oldest build of Fred we will talk to */
private static final int lastGoodBuild = 507;
Modified: trunk/freenet/src/freenet/node/fcp/ModifyPersistentRequest.java
===================================================================
--- trunk/freenet/src/freenet/node/fcp/ModifyPersistentRequest.java
2006-03-09 18:50:12 UTC (rev 8201)
+++ trunk/freenet/src/freenet/node/fcp/ModifyPersistentRequest.java
2006-03-09 18:54:21 UTC (rev 8202)
@@ -51,6 +51,8 @@
fs.put("Identifier", identifier);
fs.put("Global", Boolean.toString(global));
fs.put("PriorityClass", Short.toString(priorityClass));
+ if(clientToken != null)
+ fs.put("ClientToken", clientToken);
return fs;
}