summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/README.txt2
-rw-r--r--main/src/main/java/de/blinkt/openvpn/VpnProfile.java3
2 files changed, 4 insertions, 1 deletions
diff --git a/doc/README.txt b/doc/README.txt
index 8e665bfa..07562bea 100644
--- a/doc/README.txt
+++ b/doc/README.txt
@@ -14,7 +14,7 @@ See the file todo.txt for ideas/not yet implemented features (and the bug track
Build instraction:
-Disable Google breakcode (WITH_BREAKPAD=0 in jni/Android.mk) or checkout google breakcode
+Disable Google breakcode (call build-native.sh with USE_BREAKPAD=0) or checkout google breakcode
svn co http://google-breakpad.googlecode.com/svn/trunk/ google-breakpad
diff --git a/main/src/main/java/de/blinkt/openvpn/VpnProfile.java b/main/src/main/java/de/blinkt/openvpn/VpnProfile.java
index 7e25e79a..7fefa067 100644
--- a/main/src/main/java/de/blinkt/openvpn/VpnProfile.java
+++ b/main/src/main/java/de/blinkt/openvpn/VpnProfile.java
@@ -228,6 +228,9 @@ public class VpnProfile implements Serializable {
cfg += "machine-readable-output\n";
+ // Users are confused by warnings that are misleading...
+ cfg += "ifconfig-nowarn\n";
+
boolean useTLSClient = (mAuthenticationType != TYPE_STATICKEYS);