Author: toad
Date: 2006-05-17 11:24:55 +0000 (Wed, 17 May 2006)
New Revision: 8734
Modified:
branches/legacy/stable/src/freenet/Version.java
branches/legacy/stable/src/net/i2p/util/NativeBigInteger.java
Log:
5107: Fix initial startup failure when libjbigi cannot be loaded.
Modified: branches/legacy/stable/src/freenet/Version.java
===================================================================
--- branches/legacy/stable/src/freenet/Version.java 2006-05-17 11:14:37 UTC
(rev 8733)
+++ branches/legacy/stable/src/freenet/Version.java 2006-05-17 11:24:55 UTC
(rev 8734)
@@ -20,7 +20,7 @@
public static String protocolVersion = "STABLE-1.51";
/** The build number of the current revision */
- public static final int buildNumber = 5106;
+ public static final int buildNumber = 5107;
/** Oldest build of Fred we will talk to */
public static final int lastGoodBuild = 5099;
Modified: branches/legacy/stable/src/net/i2p/util/NativeBigInteger.java
===================================================================
--- branches/legacy/stable/src/net/i2p/util/NativeBigInteger.java
2006-05-17 11:14:37 UTC (rev 8733)
+++ branches/legacy/stable/src/net/i2p/util/NativeBigInteger.java
2006-05-17 11:24:55 UTC (rev 8734)
@@ -430,7 +430,7 @@
}
if (_doLog && !_nativeOk)
System.err.println("INFO: Native BigInteger library jbigi not
loaded - using pure java");
- }catch(Exception e){
+ }catch(Throwable e){
if (_doLog)
System.err.println("INFO: Native BigInteger library jbigi not
loaded, reason: '"+e.getMessage()+"' - using pure java");
}