svn commit: r191016 - head/sys/net80211

Sam Leffler sam at FreeBSD.org
Mon Apr 13 20:50:12 UTC 2009


Author: sam
Date: Mon Apr 13 20:50:07 2009
New Revision: 191016
URL: http://svn.freebsd.org/changeset/base/191016

Log:
  check correct address for a bssid mtch

Modified:
  head/sys/net80211/ieee80211_tdma.c

Modified: head/sys/net80211/ieee80211_tdma.c
==============================================================================
--- head/sys/net80211/ieee80211_tdma.c	Mon Apr 13 20:45:29 2009	(r191015)
+++ head/sys/net80211/ieee80211_tdma.c	Mon Apr 13 20:50:07 2009	(r191016)
@@ -344,7 +344,7 @@ tdma_recv_mgmt(struct ieee80211_node *ni
 		/*
 		 * Check for state updates.
 		 */
-		if (IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_bssid)) {
+		if (IEEE80211_ADDR_EQ(wh->i_addr3, ni->ni_bssid)) {
 			/*
 			 * Count frame now that we know it's to be processed.
 			 */


More information about the svn-src-head mailing list