]> git.ipfire.org Git - thirdparty/hostap.git/blobdiff - wlantest/rx_mgmt.c
tests: Fix ap-mgmt-fuzzer build configuration to match libap.a
[thirdparty/hostap.git] / wlantest / rx_mgmt.c
index b15f561e335f0caad6c7f842f6dd9800993d6aa8..95ff258c2e785e01d2bb5f032ced217d921e5922 100644 (file)
@@ -351,7 +351,8 @@ static int try_rmsk(struct wlantest *wt, struct wlantest_bss *bss,
                return -1;
 
        if (fils_pmk_to_ptk(pmk_buf, pmk_len, sta->addr, bss->bssid,
-                           sta->snonce, sta->anonce, &ptk, ick, &ick_len,
+                           sta->snonce, sta->anonce, NULL, 0,
+                           &ptk, ick, &ick_len,
                            sta->key_mgmt, sta->pairwise_cipher,
                            NULL, NULL) < 0)
                return -1;
@@ -655,7 +656,7 @@ static void rx_mgmt_assoc_resp(struct wlantest *wt, const u8 *data, size_t len)
                sta->state = STATE3;
        }
 
-       if (wpa_ft_parse_ies(ies, ies_len, &parse) == 0) {
+       if (wpa_ft_parse_ies(ies, ies_len, &parse, 0) == 0) {
                if (parse.r0kh_id) {
                        os_memcpy(bss->r0kh_id, parse.r0kh_id,
                                  parse.r0kh_id_len);