summaryrefslogtreecommitdiff
path: root/src/de/blinkt/openvpn/VpnProfile.java
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-05-13 02:03:20 +0200
committerArne Schwabe <arne@rfc2549.org>2012-05-13 02:03:20 +0200
commit1787d6dcbb0cc54e78043e6093ac45b09f0986a7 (patch)
treeba539ff1a035b08d6baa5536c1906e2cf0c76a44 /src/de/blinkt/openvpn/VpnProfile.java
parent9e2afc72b16125f7c365b8d600f6f5df36aa8f48 (diff)
Version 0.5.3
Fix a few new bugs before pushing to the market :)
Diffstat (limited to 'src/de/blinkt/openvpn/VpnProfile.java')
-rw-r--r--src/de/blinkt/openvpn/VpnProfile.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java
index aed9ca03..b5e421fb 100644
--- a/src/de/blinkt/openvpn/VpnProfile.java
+++ b/src/de/blinkt/openvpn/VpnProfile.java
@@ -148,7 +148,10 @@ public class VpnProfile implements Serializable{
cfg+="tmp-dir ";
cfg+=cacheDir.getAbsolutePath();
cfg+="\n\n";
-
+
+ cfg+="# Log window is better readable this way\n";
+ cfg+="suppress-timestamps\n";
+
boolean useTLSClient = (mAuthenticationType != TYPE_STATICKEYS);