From 9b682d43db34f9b6a3859b2b9d276286bd37f23f Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Mon, 29 Mar 2021 12:07:41 -0700 Subject: [PATCH] station: unify firmware/normal roaming This doesn't change much functionally but does unify the two roaming paths by ending with 'station_roamed()'. --- src/station.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/station.c b/src/station.c index 0d4cd47d..acf77ec8 100644 --- a/src/station.c +++ b/src/station.c @@ -2332,7 +2332,7 @@ static void station_event_roamed(struct station *station, struct scan_bss *new) l_queue_insert(station->bss_list, new, scan_bss_rank_compare, NULL); - station_enter_state(station, STATION_STATE_CONNECTED); + station_roamed(station); } static void station_rssi_level_changed(struct station *station,