Previous attempt to turn off JAR verification only did it when the security
manager was enabled, now it is also turned off when there is no security
manager (which was the original intent).


git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@765034 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java b/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java
index 3bd7819..343b6e1 100644
--- a/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java
+++ b/framework/src/main/java/org/apache/felix/framework/util/SecureAction.java
@@ -536,7 +536,7 @@
         }
         else
         {
-            return new JarFileX(file);
+            return new JarFileX(file, verify);
         }
     }
 // TODO: REFACTOR - SecureAction fix needed.