diff options
author | schwabe <none@none> | 2012-04-29 20:29:27 +0200 |
---|---|---|
committer | schwabe <none@none> | 2012-04-29 20:29:27 +0200 |
commit | 59ec3d3da5b3a7dca678df9adde663a57ccd1632 (patch) | |
tree | 365a228959d2d9d645623a05fa9929efd5abb689 /src | |
parent | 82327ec0b9929d6459d7a7f099b25dfca2bd6480 (diff) |
Fix static keys
Diffstat (limited to 'src')
-rw-r--r-- | src/de/blinkt/openvpn/VpnProfile.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java index 201bc111..2db89395 100644 --- a/src/de/blinkt/openvpn/VpnProfile.java +++ b/src/de/blinkt/openvpn/VpnProfile.java @@ -241,7 +241,7 @@ public class VpnProfile implements Serializable{ if(mUseTLSAuth) { if(mAuthenticationType==TYPE_STATICKEYS) - cfg+="static "; + cfg+="secret "; else cfg+="tls-auth "; cfg+=mTLSAuthFilename; |