From 646bfde7fa26cdd89caec59eeef4c10861954d2d Mon Sep 17 00:00:00 2001 From: Martin Mathieson Date: Sat, 14 Nov 2020 20:27:45 +0000 Subject: [PATCH] Fix some filter names. Detected by 'tools/check_typed_item_calls.py --consecutive' --- epan/dissectors/packet-ieee80211.c | 8 ++++---- epan/dissectors/packet-lbmc.c | 2 +- epan/dissectors/packet-tn3270.c | 2 +- epan/dissectors/packet-x25.c | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c index 3f1e45cfb7..10897f72c1 100644 --- a/epan/dissectors/packet-ieee80211.c +++ b/epan/dissectors/packet-ieee80211.c @@ -30029,7 +30029,7 @@ proto_register_ieee80211(void) NULL, HFILL }}, {&hf_ieee80211_tag_addba_ext_reserved, - {"Reserved", "wlan.addba.he_frag_oper", + {"Reserved", "wlan.addba.reserved", FT_UINT8, BASE_HEX, NULL, 0xF8, NULL, HFILL }}, @@ -30689,12 +30689,12 @@ proto_register_ieee80211(void) "HT Information Fixed Field", HFILL }}, {&hf_ieee80211_ff_ht_info_information_request, - {"Information Request", "wlan.fixed.mimo.control.chanwidth", + {"Information Request", "wlan.fixed.mimo.control.inforequest", FT_BOOLEAN, 8, TFS(&ff_ht_info_information_request_flag), 0x01, NULL, HFILL }}, {&hf_ieee80211_ff_ht_info_40_mhz_intolerant, - {"40 MHz Intolerant", "wlan.fixed.mimo.control.chanwidth", + {"40 MHz Intolerant", "wlan.fixed.mimo.control.intolerant", FT_BOOLEAN, 8, TFS(&ff_ht_info_40_mhz_intolerant_flag), 0x02, NULL, HFILL }}, @@ -36322,7 +36322,7 @@ proto_register_ieee80211(void) "Traffic Stream (TS) Info Direction", HFILL }}, {&hf_ieee80211_tsinfo_access, - {"Access Policy", "wlan.ts_info.dir", + {"Access Policy", "wlan.ts_info.access", FT_UINT24, BASE_DEC, VALS(tsinfo_access), 0x000180, "Traffic Stream (TS) Info Access Policy", HFILL }}, diff --git a/epan/dissectors/packet-lbmc.c b/epan/dissectors/packet-lbmc.c index 8deac1995c..8573541601 100644 --- a/epan/dissectors/packet-lbmc.c +++ b/epan/dissectors/packet-lbmc.c @@ -12851,7 +12851,7 @@ void proto_register_lbmc(void) { &hf_lbmc_umq_ulb_rcr_msgid_regid, { "Message ID Registration ID", "lbmc.umq_ulb_rcr.msgid_regid", FT_UINT64, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_lbmc_umq_ulb_rcr_msgid_stamp, - { "Message ID Stamp", "lbmc.umq_ulb_rcr.msgid_regid", FT_UINT64, BASE_HEX, NULL, 0x0, NULL, HFILL } }, + { "Message ID Stamp", "lbmc.umq_ulb_rcr.msgid_stamp", FT_UINT64, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_lbmc_umq_ulb_rcr_topic_tsp, { "Topic TSP", "lbmc.umq_ulb_rcr.topic_tsp", FT_UINT32, BASE_HEX_DEC, NULL, 0x0, NULL, HFILL } }, { &hf_lbmc_umq_ulb_rcr_assign_id, diff --git a/epan/dissectors/packet-tn3270.c b/epan/dissectors/packet-tn3270.c index 15b55fa0a4..0e2fb84999 100644 --- a/epan/dissectors/packet-tn3270.c +++ b/epan/dissectors/packet-tn3270.c @@ -5953,7 +5953,7 @@ proto_register_tn3270(void) /* 5.19 - Read Partition */ { &hf_tn3270_read_partition_operation_type, { "Read Partition Operation Type", - "tn3270.read_partition_reqtyp", + "tn3270.read_partition_optyp", FT_UINT8, BASE_HEX, VALS(vals_read_partition_operation_type), 0x0, NULL, HFILL } }, diff --git a/epan/dissectors/packet-x25.c b/epan/dissectors/packet-x25.c index ce6d41b84d..f27ea1fd89 100644 --- a/epan/dissectors/packet-x25.c +++ b/epan/dissectors/packet-x25.c @@ -2054,8 +2054,8 @@ proto_register_x25(void) { "From the called DTE", "x25.facility.throughput.called_dte", FT_UINT8, BASE_DEC, VALS(x25_facilities_classA_throughput_vals), 0xF0, "Facility Throughput called DTE", HFILL }}, { &hf_x25_throughput_called_dte, - { "From the calling DTE", "x25.facility.throughput.called_dte", FT_UINT8, BASE_DEC, VALS(x25_facilities_classA_throughput_vals), 0x0F, - "Facility Throughput called DTE", HFILL }}, + { "From the calling DTE", "x25.facility.throughput.calling_dte", FT_UINT8, BASE_DEC, VALS(x25_facilities_classA_throughput_vals), 0x0F, + "Facility Throughput calling DTE", HFILL }}, { &hf_x25_facility_classA_cug, { "Closed user group", "x25.facility.cug", FT_UINT8, BASE_HEX, NULL, 0, "Facility Closed user group", HFILL }},