missed file from last checkin

This commit is contained in:
zzz
2015-03-20 13:32:42 +00:00
parent 590a3c98e5
commit e02d44433d
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 8;
public final static long BUILD = 9;
/** for example "-test" */
public final static String EXTRA = "";

View File

@@ -170,7 +170,7 @@ public class Reseeder {
*/
int requestReseed(InputStream in) throws IOException {
byte[] su3Magic = DataHelper.getASCII(SU3File.MAGIC);
byte[] zipMagic = new byte[] { 0x1F, (byte) 0x8B, 0x08 };
byte[] zipMagic = new byte[] { 0x50, 0x4b, 0x03, 0x04 };
int len = Math.max(su3Magic.length, zipMagic.length);
byte[] magic = new byte[len];
File tmp = null;