Fix ieee802.15.4 wpan-zboss abbreviations

Change-Id: Iab6e71938003e4088d0290df103ea78ade82a89f
Reviewed-on: https://code.wireshark.org/review/32213
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
James Ko 2019-02-26 15:45:16 -08:00 committed by Anders Broman
parent f398a0e267
commit 0a035b1410
1 changed files with 4 additions and 4 deletions

View File

@ -5094,19 +5094,19 @@ void proto_register_ieee802154(void)
/* ZBOSS dump */
{ &hf_zboss_page,
{ "Page", "wpan.zboss.page", FT_UINT8, BASE_DEC_HEX, VALS(zboss_page_names), 0xFE,
{ "Page", "wpan-zboss.page", FT_UINT8, BASE_DEC_HEX, VALS(zboss_page_names), 0xFE,
"IEEE802.15.4 page number", HFILL } },
{ &hf_zboss_channel,
{ "Channel", "wpan.zboss.channel", FT_UINT8, BASE_DEC, NULL, 0x0,
{ "Channel", "wpan-zboss.channel", FT_UINT8, BASE_DEC, NULL, 0x0,
"Channel number", HFILL }},
{ &hf_zboss_direction,
{ "ZBOSS Direction", "wpan.zboss.direction", FT_UINT8, BASE_HEX, VALS(zboss_direction_names), 0x01,
{ "ZBOSS Direction", "wpan-zboss.direction", FT_UINT8, BASE_HEX, VALS(zboss_direction_names), 0x01,
"ZBOSS Packet Direction", HFILL }},
{ &hf_zboss_trace_number,
{ "Trace number", "wpan.zboss.trace", FT_UINT32, BASE_DEC, NULL, 0x0,
{ "Trace number", "wpan-zboss.trace", FT_UINT32, BASE_DEC, NULL, 0x0,
"Trace item number", HFILL }},
};