Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1e188637 authored by Emmanuel Grumbach's avatar Emmanuel Grumbach Committed by John W. Linville
Browse files

mac80211: dont add a STA which is not in the same IBSS



This patch avoids adding STAs that don't belong to our IBSS
ieee80211_bssid_match matches also bcast address so also APs
were added

Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: default avatarTomas Winkler <tomas.winkler@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent a05ffd39
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4360,7 +4360,7 @@ struct sta_info *ieee80211_ibss_add_sta(struct net_device *dev,
		return NULL;
	}

	if (!ieee80211_bssid_match(bssid, sdata->u.sta.bssid))
	if (compare_ether_addr(bssid, sdata->u.sta.bssid))
		return NULL;

#ifdef CONFIG_MAC80211_VERBOSE_DEBUG