ieee80211: fix the value for CBAP allocation

as per IEEE 80211-2016: table 9-236, the encoding for
allocation type is (bits 6, 5, 4)

0 - SP allocation
1 - CBAP allocation

Change-Id: Ibe396aee7bd40f573f8e39769aebfe1a610a1c16
Reviewed-on: https://code.wireshark.org/review/27700
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Chaitanya Tata 2018-05-22 12:38:46 +05:30 committed by Anders Broman
parent 5d69755c50
commit d41a5dceff
1 changed files with 1 additions and 1 deletions

View File

@ -2817,7 +2817,7 @@ static const value_string band_id[] = {
static const value_string allocation_type[] = {
{0x0, "SP Allocation"},
{0x4, "CBAP allocation"},
{0x1, "CBAP allocation"},
{0, NULL}
};