From 9ffd305b594cf4767da3af8d33da9e02efb67b7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 24 Oct 2021 17:47:54 +0200 Subject: [PATCH] network: must re-send station request when we receive family ID The get station request also fails if the family ID is invalid. --- modules/network.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/network.c b/modules/network.c index 117f687..06ada9b 100644 --- a/modules/network.c +++ b/modules/network.c @@ -695,6 +695,7 @@ handle_genl_ctrl(struct module *mod, uint16_t type, bool nested, case CTRL_ATTR_FAMILY_ID: { m->nl80211.family_id = *(const uint16_t *)payload; send_nl80211_get_interface(m); + send_nl80211_get_station(m); break; }