summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorschwabe <devnull@localhost>2012-04-29 20:29:27 +0200
committerschwabe <devnull@localhost>2012-04-29 20:29:27 +0200
commitdaf44e6fbde97e23c9e39f26d1ed0bd3a0f02ede (patch)
tree365a228959d2d9d645623a05fa9929efd5abb689 /src
parentec65a38af4edc986f7f1a90e446cc8713c9ca05e (diff)
Fix static keys
Diffstat (limited to 'src')
-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;