PERFORCE change 136542 for review

Sam Leffler sam at FreeBSD.org
Sat Mar 1 01:17:25 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=136542

Change 136542 by sam at sam_ebb on 2008/03/01 01:16:42

	txrate passed out is no longer an index into the rate set;
	it's the ieee rate code

Affected files ...

.. //depot/projects/vap/sbin/ifconfig/ifieee80211.c#12 edit

Differences ...

==== //depot/projects/vap/sbin/ifconfig/ifieee80211.c#12 (text+ko) ====

@@ -3402,7 +3402,7 @@
 		return si->isi_flags & IEEE80211_CHAN_HT40 ?
 		    txrate : txrate / 2;
 	} else
-		return (si->isi_rates[txrate] & IEEE80211_RATE_VAL) / 2;
+		return (txrate & IEEE80211_RATE_VAL) / 2;
 }
 
 static void


More information about the p4-projects mailing list