aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee80211.c
diff options
context:
space:
mode:
authorRichard Sharpe <realrichardsharpe@gmail.com>2018-03-26 09:05:49 -0700
committerAnders Broman <a.broman58@gmail.com>2018-05-24 04:02:34 +0000
commitdcececa79fdb00348cc1d93f53af41b5a639946a (patch)
tree2148be23f79c60a4aac58d525d3ed6ab1feac810 /epan/dissectors/packet-ieee80211.c
parent44ccc3a963d1881777d58047798661a5022900f2 (diff)
ieee80211: Make QoS DSCP Exception and Range descriptions searchable.
People still want to search on the non-broken out fields. Change-Id: Ibb68d9d335abc5b409ed99044ac2e895d672a174 Reviewed-on: https://code.wireshark.org/review/27760 Petri-Dish: Richard Sharpe <realrichardsharpe@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-ieee80211.c')
-rw-r--r--epan/dissectors/packet-ieee80211.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index 2d5c22f2d1..97a459a2b0 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -15994,7 +15994,7 @@ dissect_qos_map_set(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* d
left = tag_len - 16;
while (left >= 2) {
dscp_item = proto_tree_add_item(tree, hf_ieee80211_tag_qos_map_set_dscp_exc,
- tvb, offset, 2, ENC_NA);
+ tvb, offset, 2, ENC_LITTLE_ENDIAN);
dscp_tree = proto_item_add_subtree(dscp_item, ett_qos_map_set_exception);
item = proto_tree_add_item(dscp_tree,
@@ -32370,7 +32370,7 @@ proto_register_ieee80211(void)
/* QoS Map Set element */
{&hf_ieee80211_tag_qos_map_set_dscp_exc,
{"DSCP Exception", "wlan.qos_map_set.dscp_exception",
- FT_NONE, BASE_NONE, NULL, 0, NULL, HFILL }},
+ FT_UINT16, BASE_HEX, NULL, 0, NULL, HFILL }},
{&hf_ieee80211_tag_qos_map_set_dscp_exc_val,
{"DSCP Value", "wlan.qos_map_set.dscp_value",
@@ -32384,7 +32384,7 @@ proto_register_ieee80211(void)
{&hf_ieee80211_tag_qos_map_set_range,
{"DSCP Range description", "wlan.qos_map_set.range",
- FT_NONE, BASE_NONE, NULL, 0, NULL, HFILL }},
+ FT_UINT16, BASE_HEX, NULL, 0, NULL, HFILL }},
{&hf_ieee80211_tag_qos_map_set_low,
{"DSCP Low Value", "wlan.qos_map_set.dscp_low_value",