diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-07-25 15:05:12 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-07-25 15:05:12 +0200 |
commit | 47152f7a0c579a482daea16aa771db5a9edb8392 (patch) | |
tree | 60d6976a2a6aa8f2eedad0da998d90c7eda2fc32 /src/de/blinkt/openvpn/OpenVPNThread.java | |
parent | 9e33d076ce06351b53eb18674fec14843d879fdf (diff) |
restore compatibility with Android 4.0
Diffstat (limited to 'src/de/blinkt/openvpn/OpenVPNThread.java')
-rw-r--r-- | src/de/blinkt/openvpn/OpenVPNThread.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/OpenVPNThread.java b/src/de/blinkt/openvpn/OpenVPNThread.java index 4477fa5f..97e07c9d 100644 --- a/src/de/blinkt/openvpn/OpenVPNThread.java +++ b/src/de/blinkt/openvpn/OpenVPNThread.java @@ -58,7 +58,7 @@ public class OpenVPNThread implements Runnable { // Hack O rama
// Hack until I find a good way to get the real library path
- String applibpath = argv[0].replace("/cache/miniovpn", "/lib");
+ String applibpath = argv[0].replace("/cache/" + VpnProfile.MINIVPN , "/lib");
String lbpath = pb.environment().get("LD_LIBRARY_PATH");
if(lbpath==null)
|