diff options
author | Tobias Brunner <tobias@strongswan.org> | 2015-06-12 15:13:46 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2015-07-28 13:27:31 +0200 |
commit | 4dc6275be56d5a924dd5efa4988908b3b30cbddf (patch) | |
tree | f2e233a5b51770820fefa7323436ab1888a8cc17 /src/frontends/android | |
parent | 9d957bacfcbbed68e22a8c08e72ffdd97cba633e (diff) | |
download | strongswan-4dc6275be56d5a924dd5efa4988908b3b30cbddf.tar.bz2 strongswan-4dc6275be56d5a924dd5efa4988908b3b30cbddf.tar.xz |
android: EAP-TNC does not require a client certificate
Was incorrectly changed with the refactoring in a64089738d3e ("android:
Change how features of VPN types are stored and checked").
Diffstat (limited to 'src/frontends/android')
-rw-r--r-- | src/frontends/android/src/org/strongswan/android/data/VpnType.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontends/android/src/org/strongswan/android/data/VpnType.java b/src/frontends/android/src/org/strongswan/android/data/VpnType.java index bffa8384c..bb7fd09f3 100644 --- a/src/frontends/android/src/org/strongswan/android/data/VpnType.java +++ b/src/frontends/android/src/org/strongswan/android/data/VpnType.java @@ -24,7 +24,7 @@ public enum VpnType IKEV2_CERT("ikev2-cert", EnumSet.of(VpnTypeFeature.CERTIFICATE)), IKEV2_CERT_EAP("ikev2-cert-eap", EnumSet.of(VpnTypeFeature.USER_PASS, VpnTypeFeature.CERTIFICATE)), IKEV2_EAP_TLS("ikev2-eap-tls", EnumSet.of(VpnTypeFeature.CERTIFICATE)), - IKEV2_BYOD_EAP("ikev2-byod-eap", EnumSet.of(VpnTypeFeature.USER_PASS, VpnTypeFeature.CERTIFICATE, VpnTypeFeature.BYOD)); + IKEV2_BYOD_EAP("ikev2-byod-eap", EnumSet.of(VpnTypeFeature.USER_PASS, VpnTypeFeature.BYOD)); /** * Features of a VPN type. |