Fixes my previous commit (rev 1.20)

MFC after:	1 day
This commit is contained in:
Damien Bergamini 2005-10-07 18:11:32 +00:00
parent 6512768b89
commit 71016a2499
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=151068

View File

@ -2276,7 +2276,7 @@ iwi_set_chan(struct iwi_softc *sc, struct ieee80211_channel *chan)
struct iwi_scan scan;
memset(&scan, 0, sizeof scan);
memset(scan.type, 26, IWI_SCAN_TYPE_PASSIVE);
memset(scan.type, IWI_SCAN_TYPE_PASSIVE, sizeof scan.type);
scan.passive = htole16(2000);
scan.channels[0] = 1 |
(IEEE80211_IS_CHAN_5GHZ(chan) ? IWI_CHAN_5GHZ : IWI_CHAN_2GHZ);
@ -2298,10 +2298,10 @@ iwi_scan(struct iwi_softc *sc)
if (ic->ic_des_esslen != 0) {
scan.bdirected = htole16(sc->dwelltime);
memset(scan.type, 26, IWI_SCAN_TYPE_BDIRECTED);
memset(scan.type, IWI_SCAN_TYPE_BDIRECTED, sizeof scan.type);
} else {
scan.broadcast = htole16(sc->dwelltime);
memset(scan.type, 26, IWI_SCAN_TYPE_BROADCAST);
memset(scan.type, IWI_SCAN_TYPE_BROADCAST, sizeof scan.type);
}
p = scan.channels;