Author: toad
Date: 2006-05-17 11:26:50 +0000 (Wed, 17 May 2006)
New Revision: 8735

Modified:
   branches/legacy/unstable/src/freenet/Version.java
   branches/legacy/unstable/src/net/i2p/util/NativeBigInteger.java
Log:
60277: Fix startup failure when libjbigi cannot be loaded.

Modified: branches/legacy/unstable/src/freenet/Version.java
===================================================================
--- branches/legacy/unstable/src/freenet/Version.java   2006-05-17 11:24:55 UTC 
(rev 8734)
+++ branches/legacy/unstable/src/freenet/Version.java   2006-05-17 11:26:50 UTC 
(rev 8735)
@@ -21,7 +21,7 @@
        public static String altProtocolVersion = "1.52";

        /** The build number of the current revision */
-       public static final int buildNumber = 60276;
+       public static final int buildNumber = 60277;

        /** Oldest build of Fred we will talk to */
        public static final int lastGoodBuild = 60235;

Modified: branches/legacy/unstable/src/net/i2p/util/NativeBigInteger.java
===================================================================
--- branches/legacy/unstable/src/net/i2p/util/NativeBigInteger.java     
2006-05-17 11:24:55 UTC (rev 8734)
+++ branches/legacy/unstable/src/net/i2p/util/NativeBigInteger.java     
2006-05-17 11:26:50 UTC (rev 8735)
@@ -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");
        }


Reply via email to