From e0c4172681238861583d9a104ba88245896029b8 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Mon, 31 Oct 2022 13:56:07 +0000 Subject: [PATCH] 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"" --- epan/dissectors/packet-ieee80211.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 }},