From 71dc3475821052c1f45160fb90407e7c941de635 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 25 Jun 2024 06:06:23 -0700 Subject: [PATCH] station: add debug event prior to sending an FT-auth frame --- src/station.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/station.c b/src/station.c index 1e8846b4..509d919c 100644 --- a/src/station.c +++ b/src/station.c @@ -2449,6 +2449,8 @@ static bool station_fast_transition(struct station *station, goto done; } + station_debug_event(station, "ft-authenticating"); + if (station->connected_bss->frequency == bss->frequency) { ft_authenticate_onchannel(netdev_get_ifindex(station->netdev), bss);