summaryrefslogtreecommitdiff
path: root/app/src/main/java
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2022-12-21 12:43:41 +0100
committercyBerta <cyberta@riseup.net>2022-12-21 12:43:41 +0100
commitf8fa7db2b598787d6172fd177ac9f905c9289eb7 (patch)
tree97b9b7f4e949f9e880ac4324e41326e3e3243a9f /app/src/main/java
parent5176f99ab26037a578eec8e6e918c3b9a1b0031c (diff)
fix MinieVPNExecutableName()
Diffstat (limited to 'app/src/main/java')
-rw-r--r--app/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java b/app/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java
index 03908ecd..80427a03 100644
--- a/app/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java
+++ b/app/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java
@@ -45,16 +45,15 @@ public class VPNLaunchHelper {
}
}
- throw new RuntimeException("Cannot find any execulte for this device's ABIs " + abis.toString());
+ throw new RuntimeException("Cannot find any execute for this device's ABIs " + abis.toString());
}
- @TargetApi(Build.VERSION_CODES.LOLLIPOP)
private static String[] getSupportedABIsLollipop() {
return Build.SUPPORTED_ABIS;
}
private static String getMiniVPNExecutableName() {
- return MININONPIEVPN;
+ return MINIPIEVPN;
}
public static String[] replacePieWithNoPie(String[] mArgv) {