Skip to content

Commit

Permalink
wifi: fix channel 13b reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
arsv committed Nov 7, 2017
1 parent 4f15dbf commit 11bcbc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net2/wifi_dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static char* fmt_chan(char* p, char* e, int freq)
if(freq == 2484) {
step = 14;
band = 'b';
} else if((step = inrange(freq, 2412, 2467, 5, 1))) {
} else if((step = inrange(freq, 2412, 2472, 5, 1))) {
band = 'b';
} else if((step = inrange(freq, 5035, 5865, 5, 7))) {
band = 'a';
Expand Down

0 comments on commit 11bcbc0

Please sign in to comment.