summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2017-01-29 23:00:37 +0100
committerArne Schwabe <arne@rfc2549.org>2017-01-29 23:00:37 +0100
commitc639e95aa6cbfffad1f20d8e08418ea5f9232855 (patch)
tree36515f115cd51a611e4026f8572afff1f5b3a407
parent7de5af8bd9f0df3efd0e70b86160373de37ad0bc (diff)
Update openssl
m---------main/openssl0
-rw-r--r--main/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java6
2 files changed, 3 insertions, 3 deletions
diff --git a/main/openssl b/main/openssl
-Subproject fad90f8d2f0d00eea112e261fcaa0eae2ad55a9
+Subproject dac310ed06b7c91b8b28c7e433f2b82e2bd4cc6
diff --git a/main/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java b/main/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java
index bc03db25..d97dce03 100644
--- a/main/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java
+++ b/main/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java
@@ -21,8 +21,8 @@ import de.blinkt.openvpn.R;
import de.blinkt.openvpn.VpnProfile;
public class VPNLaunchHelper {
- private static final String MININONPIEVPN = "nopie_openvpn";
- private static final String MINIPIEVPN = "pie_openvpn";
+ private static final String MININONPIEVPN = "c_nopie_openvpn";
+ private static final String MINIPIEVPN = "c_pie_openvpn";
private static final String OVPNCONFIGFILE = "android.conf";
@@ -43,7 +43,7 @@ public class VPNLaunchHelper {
for (String abi: abis) {
- File vpnExecutable = new File(context.getCacheDir(), "c_" + getMiniVPNExecutableName() + "." + abi);
+ File vpnExecutable = new File(context.getCacheDir(), getMiniVPNExecutableName() + "." + abi);
if ((vpnExecutable.exists() && vpnExecutable.canExecute()) || writeMiniVPNBinary(context, abi, vpnExecutable)) {
return vpnExecutable.getPath();
}