summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-09-23 12:27:51 +0200
committerArne Schwabe <arne@rfc2549.org>2012-09-23 12:27:51 +0200
commit489ab823b1157a5839b33ac61c31e1f7920f40e7 (patch)
tree14fa038a9b860cbebdcf2024f0d0d44b2094be95 /src
parentcdfcdbf1810182d7316f658d697efee7077df96a (diff)
Move untranslatable string to own file
Diffstat (limited to 'src')
-rw-r--r--src/de/blinkt/openvpn/LaunchVPN.java5
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) {