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 | 2d1ba27de2ed0b477f88ed8cc64fcccd709d8221 (patch) | |
tree | 581aa7b78748a884e8a30e76ff76e6aadb354250 /src/de/blinkt/openvpn/LaunchVPN.java | |
parent | 4cd02fc5441d4eeb017fcde336d6d159bcb0892c (diff) |
restore compatibility with Android 4.0
Diffstat (limited to 'src/de/blinkt/openvpn/LaunchVPN.java')
-rw-r--r-- | src/de/blinkt/openvpn/LaunchVPN.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/de/blinkt/openvpn/LaunchVPN.java b/src/de/blinkt/openvpn/LaunchVPN.java index 04294c33..bfc6256e 100644 --- a/src/de/blinkt/openvpn/LaunchVPN.java +++ b/src/de/blinkt/openvpn/LaunchVPN.java @@ -90,7 +90,7 @@ public class LaunchVPN extends ListActivity implements OnItemClickListener { mPM =ProfileManager.getInstance(this); - } + } @Override protected void onStart() { @@ -224,7 +224,7 @@ public class LaunchVPN extends ListActivity implements OnItemClickListener { } private boolean writeMiniVPN() { - File mvpnout = new File(getCacheDir(),"miniovpn"); + File mvpnout = new File(getCacheDir(),VpnProfile.MINIVPN); if (mvpnout.exists() && mvpnout.canExecute()) return true; |