From b20774a55f2b9bf6d74d2bde98b13485fe3230f3 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Fri, 14 Jan 2022 16:30:26 -0600 Subject: [PATCH] station: Add some additional debugs --- src/station.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/station.c b/src/station.c index b9a6efe1..38d0757c 100644 --- a/src/station.c +++ b/src/station.c @@ -1578,6 +1578,8 @@ bool station_set_autoconnect(struct station *station, bool autoconnect) static void station_roam_state_clear(struct station *station) { + l_debug("%u", netdev_get_ifindex(station->netdev)); + l_timeout_remove(station->roam_trigger_timeout); station->roam_trigger_timeout = NULL; station->preparing_roam = false; @@ -1600,6 +1602,8 @@ static void station_reset_connection_state(struct station *station) struct network *network = station->connected_network; struct l_dbus *dbus = dbus_get_bus(); + l_debug("%u", netdev_get_ifindex(station->netdev)); + if (!network) return;