From 746d440ce0faa447edc0c8f40f9c93faecb80b15 Mon Sep 17 00:00:00 2001
From: kytv <kytv@mail.i2p>
Date: Wed, 17 Aug 2011 18:55:26 +0000
Subject: [PATCH] better NBI logic

---
 core/java/src/net/i2p/util/NativeBigInteger.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/java/src/net/i2p/util/NativeBigInteger.java b/core/java/src/net/i2p/util/NativeBigInteger.java
index 0b2fae5e3d..c56c75d467 100644
--- a/core/java/src/net/i2p/util/NativeBigInteger.java
+++ b/core/java/src/net/i2p/util/NativeBigInteger.java
@@ -695,7 +695,7 @@ public class NativeBigInteger extends BigInteger {
             rv.add(_libPrefix + getMiddleName1() + "none_64" + _libSuffix);
         // Add libjbigi-xxx-none.so
         // Note that libjbigi-osx-none.jnilib is a 'fat binary' with both PPC and x86-32
-        if ((!_isArm)  || (!_isPPC && !_isMac))
+        if (!_isArm && !_isPPC && !_isMac)
             rv.add(getResourceName(false));
         return rv;
     }
-- 
GitLab