]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
android: EAP-TNC does not require a client certificate
authorTobias Brunner <tobias@strongswan.org>
Fri, 12 Jun 2015 13:13:46 +0000 (15:13 +0200)
committerTobias Brunner <tobias@strongswan.org>
Tue, 16 Jun 2015 14:16:36 +0000 (16:16 +0200)
Was incorrectly changed with the refactoring in a64089738d3e ("android:
Change how features of VPN types are stored and checked").

src/frontends/android/src/org/strongswan/android/data/VpnType.java

index bffa8384c51337812db3c26249fb46a3c114c22b..bb7fd09f3f47a2e7f3135a1b342f6d7637c59890 100644 (file)
@@ -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.