From: Antonio Quartulli <antonio@xxxxxxxxxxxxx> When sending a IBSS_JOINED event the bssid has to be written into the "ij" member of the event union and not in "cr". However this does not really hurt because ij.bssid and cr.bssid share the same offset in the union. Signed-off-by: Antonio Quartulli <antonio@xxxxxxxxxxxxxx> --- net/wireless/ibss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/wireless/ibss.c b/net/wireless/ibss.c index f911c5f..3fce17e 100644 --- a/net/wireless/ibss.c +++ b/net/wireless/ibss.c @@ -68,7 +68,7 @@ void cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid, gfp_t gfp) return; ev->type = EVENT_IBSS_JOINED; - memcpy(ev->cr.bssid, bssid, ETH_ALEN); + memcpy(ev->ij.bssid, bssid, ETH_ALEN); spin_lock_irqsave(&wdev->event_lock, flags); list_add_tail(&ev->list, &wdev->event_list); -- 1.8.5.3 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html