Parcourir la source

driver_test: Initialize bss_ctx based on drv->ctx for new BSS interfaces

This is needed with wpa_supplicant to get the correct context pointer
for a virtual BSS interface.
Jouni Malinen il y a 15 ans
Parent
commit
c35faef51a
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1 0
      src/drivers/driver_test.c

+ 1 - 0
src/drivers/driver_test.c

@@ -1557,6 +1557,7 @@ static int wpa_driver_test_associate(
 		bss = drv->bss = os_zalloc(sizeof(*drv->bss));
 		if (bss == NULL)
 			return -1;
+		bss->bss_ctx = drv->ctx;
 		os_strlcpy(bss->ifname, drv->ifname, IFNAMSIZ);
 		os_memcpy(bss->bssid, drv->own_addr, ETH_ALEN);
 		os_memcpy(bss->ssid, params->ssid, params->ssid_len);