diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-09-23 12:27:51 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-09-23 12:27:51 +0200 |
commit | 489ab823b1157a5839b33ac61c31e1f7920f40e7 (patch) | |
tree | 14fa038a9b860cbebdcf2024f0d0d44b2094be95 /src/de/blinkt/openvpn | |
parent | cdfcdbf1810182d7316f658d697efee7077df96a (diff) |
Move untranslatable string to own file
Diffstat (limited to 'src/de/blinkt/openvpn')
-rw-r--r-- | src/de/blinkt/openvpn/LaunchVPN.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/LaunchVPN.java b/src/de/blinkt/openvpn/LaunchVPN.java index 74f569e9..7b5324bd 100644 --- a/src/de/blinkt/openvpn/LaunchVPN.java +++ b/src/de/blinkt/openvpn/LaunchVPN.java @@ -250,8 +250,11 @@ public class LaunchVPN extends ListActivity implements OnItemClickListener { } fout.close(); - if(!mvpnout.setExecutable(true)) + if(!mvpnout.setExecutable(true)) { + OpenVPN.logMessage(0, "","Failed to set minivpn executable"); return false; + } + return true; } catch (IOException e) { |