]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
FILS: Add FILS-SK-PFS capability into "GET_CAPABILITY fils" command
authorJouni Malinen <j@w1.fi>
Mon, 13 Mar 2017 09:46:30 +0000 (11:46 +0200)
committerJouni Malinen <j@w1.fi>
Mon, 13 Mar 2017 09:46:30 +0000 (11:46 +0200)
Signed-off-by: Jouni Malinen <j@w1.fi>
wpa_supplicant/ctrl_iface.c

index cadcd10950dcc1159fe2cafc0126fdc23ad1be3e..0a4ae98378ce65cf53e8ab5c1f5ffc069b857b02 100644 (file)
@@ -4175,7 +4175,11 @@ static int wpa_supplicant_ctrl_iface_get_capability(
 #ifdef CONFIG_FILS
        if (os_strcmp(field, "fils") == 0 &&
            (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SUPPORT_FILS)) {
+#ifdef CONFIG_FILS_SK_PFS
+               res = os_snprintf(buf, buflen, "FILS FILS-SK-PFS");
+#else /* CONFIG_FILS_SK_PFS */
                res = os_snprintf(buf, buflen, "FILS");
+#endif /* CONFIG_FILS_SK_PFS */
                if (os_snprintf_error(buflen, res))
                        return -1;
                return res;