Author: nextgens
Date: 2006-02-13 23:17:16 +0000 (Mon, 13 Feb 2006)
New Revision: 8040

Modified:
   trunk/freenet/src/freenet/node/Version.java
   trunk/freenet/src/net/i2p/util/NativeBigInteger.java
Log:
Doh

Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-02-13 22:13:11 UTC (rev 
8039)
+++ trunk/freenet/src/freenet/node/Version.java 2006-02-13 23:17:16 UTC (rev 
8040)
@@ -20,7 +20,7 @@
        public static final String protocolVersion = "1.0";

        /** The build number of the current revision */
-       private static final int buildNumber = 444;
+       private static final int buildNumber = 445;

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

Modified: trunk/freenet/src/net/i2p/util/NativeBigInteger.java
===================================================================
--- trunk/freenet/src/net/i2p/util/NativeBigInteger.java        2006-02-13 
22:13:11 UTC (rev 8039)
+++ trunk/freenet/src/net/i2p/util/NativeBigInteger.java        2006-02-13 
23:17:16 UTC (rev 8040)
@@ -131,7 +131,7 @@
     private static String resolveCPUType() {
                try {
                        
if(System.getProperty("os.arch").toLowerCase().matches("(i?[x0-9]86_64|amd64)")){
-                               
if(System.getProperty("sun.arch.data.model")=="64"){
+                               
if(Integer.getInteger(System.getProperty("sun.arch.data.model")).equals(new 
Integer(64))){
                                        System.out.println("Detected x86_64 
running on a 64 bit jvm!");
                                        return JBIGI_OPTIMIZATION_X86_64;
                                }else{


Reply via email to