summaryrefslogtreecommitdiff
path: root/src/de/blinkt/openvpn/VpnProfile.java
diff options
context:
space:
mode:
authorschwabe <none@none>2012-04-29 20:29:27 +0200
committerschwabe <none@none>2012-04-29 20:29:27 +0200
commit59ec3d3da5b3a7dca678df9adde663a57ccd1632 (patch)
tree365a228959d2d9d645623a05fa9929efd5abb689 /src/de/blinkt/openvpn/VpnProfile.java
parent82327ec0b9929d6459d7a7f099b25dfca2bd6480 (diff)
Fix static keys
Diffstat (limited to 'src/de/blinkt/openvpn/VpnProfile.java')
-rw-r--r--src/de/blinkt/openvpn/VpnProfile.java2
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;