[WLANCONF]

- Fix supported rate calculation

svn path=/branches/wlan-bringup/; revision=54887
This commit is contained in:
Cameron Gutman 2012-01-09 00:09:35 +00:00
parent acdfc26b00
commit bb04662d80

View file

@ -507,7 +507,7 @@ WlanScan(HANDLE hAdapter)
Rate = Rate & 0x7F;
/* SupportedRates are in units of .5 */
Rate = Rate << 1;
Rate = Rate >> 1;
_tprintf(_T("%u "), Rate);
}