From 1c6052df6172f8f4e025fa0934abe58aab640430 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Sat, 5 May 2012 02:52:57 +0200 Subject: 0.4.8b - the my phone has a /tmp but most ics do not --- src/de/blinkt/openvpn/Settings_Obscure.java | 2 +- src/de/blinkt/openvpn/VpnProfile.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/de') diff --git a/src/de/blinkt/openvpn/Settings_Obscure.java b/src/de/blinkt/openvpn/Settings_Obscure.java index 91c6170b..fd3b540d 100644 --- a/src/de/blinkt/openvpn/Settings_Obscure.java +++ b/src/de/blinkt/openvpn/Settings_Obscure.java @@ -69,7 +69,7 @@ public class Settings_Obscure extends PreferenceFragment implements OnPreference if(preference==mLogverbosity) { // Catch old version problem if(newValue==null){ - newValue=1; + newValue="1"; } mLogverbosity.setDefaultValue(newValue); //This is idiotic. diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java index 31f32f85..f6ece687 100644 --- a/src/de/blinkt/openvpn/VpnProfile.java +++ b/src/de/blinkt/openvpn/VpnProfile.java @@ -181,12 +181,12 @@ public class VpnProfile implements Serializable{ cfg += "management-hold\n\n"; /* only needed if client is compiled with P2MP Server support as early version - * accidently were + * accidently were */ cfg+="# /tmp does not exist on Android\n"; cfg+="tmp-dir "; cfg+=cacheDir.getAbsolutePath(); cfg+="\n\n"; - */ + boolean useTLSClient = (mAuthenticationType != TYPE_STATICKEYS); if(useTLSClient && mUsePull) -- cgit v1.2.3