Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Dec 2005 01:18:24 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 87701 for review
Message-ID:  <200512040118.jB41IOsS087909@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=87701

Change 87701 by sam@sam_ebb on 2005/12/04 01:17:40

	fix logic error; caused node leakage

Affected files ...

.. //depot/projects/wifi/sys/net80211/ieee80211_input.c#73 edit

Differences ...

==== //depot/projects/wifi/sys/net80211/ieee80211_input.c#73 (text+ko) ====

@@ -235,7 +235,7 @@
 			 */
 			if (ni == ic->ic_bss &&
 			    ic->ic_opmode != IEEE80211_M_HOSTAP &&
-			    IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_macaddr)) {
+			    !IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_macaddr)) {
 				/*
 				 * Fake up a node for this newly
 				 * discovered member of the IBSS.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200512040118.jB41IOsS087909>