summaryrefslogtreecommitdiffstats
path: root/package/madwifi/patches
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-07-04 01:25:54 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-07-04 01:25:54 +0000
commitefefaf61f9d2b701556f8d77dc9acfed176575dc (patch)
tree773bbfc26bd73bcae77764b91ab42fac0daa13d9 /package/madwifi/patches
parent51aeb843d06b25fb8a67880b99d56b93df3e5ca1 (diff)
another madwifi update
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7866 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/madwifi/patches')
-rw-r--r--package/madwifi/patches/125-plug_memleak.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/package/madwifi/patches/125-plug_memleak.patch b/package/madwifi/patches/125-plug_memleak.patch
deleted file mode 100644
index 429b851a7..000000000
--- a/package/madwifi/patches/125-plug_memleak.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: madwifi-ng-r2525-20070630/net80211/ieee80211_input.c
-===================================================================
---- madwifi-ng-r2525-20070630.orig/net80211/ieee80211_input.c 2007-07-03 23:02:31.005981500 +0200
-+++ madwifi-ng-r2525-20070630/net80211/ieee80211_input.c 2007-07-03 23:02:31.926039000 +0200
-@@ -2873,7 +2873,7 @@
- ieee80211_add_scan(vap, &scan, wh, subtype, rssi, rtsf);
- return;
- }
-- if (scan.capinfo & IEEE80211_CAPINFO_IBSS) {
-+ if ((vap->iv_opmode == IEEE80211_M_IBSS) && (scan.capinfo & IEEE80211_CAPINFO_IBSS)) {
- if (!IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_macaddr)) {
- /* Create a new entry in the neighbor table. */
- ni = ieee80211_add_neighbor(vap, wh, &scan);