2006-08-21 Complication

* Fix error reporting discrepancy (thanks for helping notice, yojoe!)
This commit is contained in:
complication
2006-08-21 05:55:33 +00:00
committed by zzz
parent 48921a0875
commit 03e8875c27
3 changed files with 7 additions and 4 deletions

View File

@ -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);

View File

@ -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

View File

@ -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);