Author: toad
Date: 2006-01-13 17:17:44 +0000 (Fri, 13 Jan 2006)
New Revision: 7851
Modified:
trunk/freenet/src/freenet/client/Metadata.java
trunk/freenet/src/freenet/node/Version.java
Log:
347: Minor metadata bug (on inserts).
Modified: trunk/freenet/src/freenet/client/Metadata.java
===================================================================
--- trunk/freenet/src/freenet/client/Metadata.java 2006-01-13 17:05:51 UTC
(rev 7850)
+++ trunk/freenet/src/freenet/client/Metadata.java 2006-01-13 17:17:44 UTC
(rev 7851)
@@ -517,8 +517,8 @@
static final short ARCHIVE_TAR = 1; // FIXME for future use
/** Compressed splitfile codec */
- short compressionCodec;
- static public final short COMPRESS_GZIP = 0; // for future use
+ short compressionCodec = -1;
+ static public final short COMPRESS_GZIP = 0;
static final short COMPRESS_BZIP2 = 1; // FIXME for future use
/** The length of the splitfile */
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-01-13 17:05:51 UTC (rev
7850)
+++ trunk/freenet/src/freenet/node/Version.java 2006-01-13 17:17:44 UTC (rev
7851)
@@ -20,7 +20,7 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- public static final int buildNumber = 346;
+ public static final int buildNumber = 347;
/** Oldest build of Fred we will talk to */
public static final int lastGoodBuild = 344;