diff --git a/core/java/src/net/i2p/data/RouterIdentity.java b/core/java/src/net/i2p/data/RouterIdentity.java index bab441282d..f0cba6c62d 100644 --- a/core/java/src/net/i2p/data/RouterIdentity.java +++ b/core/java/src/net/i2p/data/RouterIdentity.java @@ -86,7 +86,7 @@ public class RouterIdentity extends DataStructureImpl { public void writeBytes(OutputStream out) throws DataFormatException, IOException { if ((_certificate == null) || (_publicKey == null) || (_signingKey == null)) - throw new DataFormatException("Not enough data to format the destination"); + throw new DataFormatException("Not enough data to format the router identity"); _publicKey.writeBytes(out); _signingKey.writeBytes(out); _certificate.writeBytes(out); diff --git a/history.txt b/history.txt index 4642cc18da..ec3b61d802 100644 --- a/history.txt +++ b/history.txt @@ -1,4 +1,7 @@ -$Id: history.txt,v 1.504 2006-07-30 00:08:20 complication Exp $ +$Id: history.txt,v 1.505 2006-08-03 17:34:25 jrandom Exp $ + +2006-08-21 Complication + * Fix error reporting discrepancy (thanks for helping notice, yojoe!) 2006-08-03 jrandom * Decrease the recently modified tunnel building timeout, though keep diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index a2344e7569..9f859bf52e 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -15,9 +15,9 @@ import net.i2p.CoreVersion; * */ public class RouterVersion { - public final static String ID = "$Revision: 1.444 $ $Date: 2006-07-31 21:26:56 $"; + public final static String ID = "$Revision: 1.445 $ $Date: 2006-08-03 17:34:26 $"; public final static String VERSION = "0.6.1.24"; - public final static long BUILD = 3; + public final static long BUILD = 4; public static void main(String args[]) { System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("Router ID: " + RouterVersion.ID);