aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2022-10-31 13:56:07 +0000
committerAndersBroman <a.broman58@gmail.com>2022-10-31 23:20:42 +0000
commite0c4172681238861583d9a104ba88245896029b8 (patch)
treefb4630f1c9a1d48b745c8618d59399c33abbf267 /epan
parent2e98ceb0d1fdf96fa2a2b19b8fbaa21b4c78fe30 (diff)
ieee80211: fix filter "wlan.fixed.publicact" appears consecutively
/packet-ieee80211.c: - filter "wlan.fixed.publicact" appears consecutively - labels are "Public Action"" and "Protected Public Action""
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-ieee80211.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index 0eca71118d..5ec22cf53e 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -40033,13 +40033,14 @@ proto_register_ieee80211(void)
{"Compressed Beamforming Feedback Matrices", "wlan.mimo.csimatrices.cbf",
FT_NONE, BASE_NONE, NULL, 0,
NULL, HFILL }},
+
{&hf_ieee80211_ff_public_action,
{"Public Action", "wlan.fixed.publicact",
FT_UINT8, BASE_HEX|BASE_EXT_STRING, &ff_pa_action_codes_ext, 0,
"Public Action Code", HFILL }},
{&hf_ieee80211_ff_protected_public_action,
- {"Protected Public Action", "wlan.fixed.publicact",
+ {"Protected Public Action", "wlan.fixed.protectedpublicact",
FT_UINT8, BASE_HEX|BASE_EXT_STRING, &ff_ppa_action_codes_ext, 0,
"Protected Public Action Code", HFILL }},