| project home | /[freewrt]/branches/freewrt_1_0/package/madwifi/patches/patch-net80211_ieee80211_node_c |
Parent Directory
|
Revision Log
Madwifi (fixing bug: #155): - downgraded to 0.9.2.1, because in 0.9.3.x the madwifi kernel module oopses in monitor mode. - applied debian's security fixed for 0.9.2.1, because every unpatched version before 0.9.3.1 is vulnerable to three knows security issues (see madwifi.org). - converted four manual patches to the freewrt patch format - thx to shorty for sending a one-liner fix in the Makefile for 0.9.2.1 Aiccu (fixing a bug reported via the xen-users ml by Frank Matthiess): - merged fix from trunk rev #2881 for fixing a bug regarding a broken IP Header in the aiccu packets. Broadcom-wl-util (fixing bug: #334): - qouted the wpa password in the if-<pre>up.d scripts. hopefully this fixes this bug. Until now I only checked that it doesn't brake something that was already working before. Freeradius (fixing bug: #321): - the init.d script now exports the correct library path before radiusd is started. otherwise the daemon fails in certain setups because some libraries cannot be found. thx to tg for this fix. License: - updated the license file to refelect the current developer team. the names and the alphabetic order has been "stolen" by me from http://www.freewrt.org/trac/wiki/Development/Developers
| 1 | $FreeWRT$ |
| 2 | --- madwifi-0.9.2.1.orig/net80211/ieee80211_node.c 2006-06-13 10:50:37.000000000 +0200 |
| 3 | +++ madwifi-0.9.2.1/net80211/ieee80211_node.c 2007-06-26 18:54:01.000000000 +0200 |
| 4 | @@ -655,7 +655,7 @@ ieee80211_sta_join(struct ieee80211vap * |
| 5 | memcpy(ni->ni_essid, se->se_ssid + 2, ni->ni_esslen); |
| 6 | ni->ni_rstamp = se->se_rstamp; |
| 7 | ni->ni_tstamp.tsf = se->se_tstamp.tsf; |
| 8 | - ni->ni_intval = se->se_intval; |
| 9 | + ni->ni_intval = IEEE80211_BINTVAL_SANITISE(se->se_intval); |
| 10 | ni->ni_capinfo = se->se_capinfo; |
| 11 | ni->ni_chan = se->se_chan; |
| 12 | ni->ni_timoff = se->se_timoff; |
| 13 | @@ -1222,7 +1222,7 @@ ieee80211_add_neighbor(struct ieee80211v |
| 14 | memcpy(ni->ni_essid, sp->ssid + 2, sp->ssid[1]); |
| 15 | IEEE80211_ADDR_COPY(ni->ni_bssid, wh->i_addr3); |
| 16 | memcpy(ni->ni_tstamp.data, sp->tstamp, sizeof(ni->ni_tstamp)); |
| 17 | - ni->ni_intval = sp->bintval; |
| 18 | + ni->ni_intval = IEEE80211_BINTVAL_SANITISE(sp->bintval); |
| 19 | ni->ni_capinfo = sp->capinfo; |
| 20 | ni->ni_chan = ic->ic_curchan; |
| 21 | ni->ni_fhdwell = sp->fhdwell; |
| root@freewrt.org:443 | ViewVC Help |
| Powered by ViewVC 1.1.20 |