mac80211: fix ibss join/create
authorFelix Fietkau <nbd@openwrt.org>
Sun, 11 Oct 2009 03:13:57 +0000 (03:13 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 11 Oct 2009 03:13:57 +0000 (03:13 +0000)
SVN-Revision: 18030

package/mac80211/patches/406-ibss_fix.patch [new file with mode: 0644]

diff --git a/package/mac80211/patches/406-ibss_fix.patch b/package/mac80211/patches/406-ibss_fix.patch
new file mode 100644 (file)
index 0000000..847451f
--- /dev/null
@@ -0,0 +1,11 @@
+--- a/net/mac80211/ibss.c
++++ b/net/mac80211/ibss.c
+@@ -544,7 +544,7 @@ static void ieee80211_sta_find_ibss(stru
+                      "%pM\n", bss->cbss.bssid, ifibss->bssid);
+ #endif /* CONFIG_MAC80211_IBSS_DEBUG */
+-      if (bss && memcmp(ifibss->bssid, bss->cbss.bssid, ETH_ALEN)) {
++      if (bss && !memcmp(ifibss->bssid, bss->cbss.bssid, ETH_ALEN)) {
+               printk(KERN_DEBUG "%s: Selected IBSS BSSID %pM"
+                      " based on configured SSID\n",
+                      sdata->dev->name, bss->cbss.bssid);