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 | f357f2f0bac975bd40c1ea3f66064bf83eab6b41 (patch) | |
tree | 31f6ed7839612ff6c81cd998523dafefc3a70212 /src/de | |
parent | 96686b5cf5a49653b070a8ee29b2b2f0b436546e (diff) |
Move untranslatable string to own file
--HG--
extra : rebase_source : f53888f33b0b11773c0c0bece5303a943a2f4a43
Diffstat (limited to 'src/de')
-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) { |