From 10fd485d7dd017ae015d005a95046bc413c891e3 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Thu, 8 Jul 2021 17:01:10 -0500 Subject: [PATCH] station: Set authenticator's RSNXE if present --- src/station.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/station.c b/src/station.c index 9bf3bbce..3431a707 100644 --- a/src/station.c +++ b/src/station.c @@ -875,6 +875,8 @@ static struct handshake_state *station_handshake_setup(struct station *station, if (station_build_handshake_rsn(hs, wiphy, network, bss) < 0) goto not_supported; + handshake_state_set_authenticator_rsnxe(hs, bss->rsnxe); + if (network_handshake_setup(network, hs) < 0) goto not_supported;