aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2022-10-31 14:32:22 +0000
committerAndersBroman <a.broman58@gmail.com>2022-10-31 23:20:42 +0000
commit2f75f65b7f31b88efd49b773bcac53987a4f690a (patch)
tree06ecf2146933a21959076317bddc06b65e7100a7 /epan
parenta9d32c931616fc26153bc1f49b4760a7ad22b9f9 (diff)
ieee80211: remove duplicate entry
packet-ieee80211.c:33184 hf_ieee80211_addr_ta called consecutively at line 33184 - previous at 33183
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-ieee80211.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index b6df68a697..d6f8905c89 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -33078,10 +33078,7 @@ dissect_ieee80211_pv1(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree,
const gchar *ether_name = tvb_get_ether_name(tvb, offset);
set_src_addr_cols(pinfo, tvb, offset, "TA");
- /* TODO: why adding as visible *and* hidden? */
proto_tree_add_item(hdr_tree, hf_ieee80211_addr_ta, tvb, offset, 6, ENC_NA);
- hidden = proto_tree_add_item(hdr_tree, hf_ieee80211_addr_ta, tvb, offset, 6, ENC_NA);
- proto_item_set_hidden(hidden);
hidden = proto_tree_add_string(hdr_tree, hf_ieee80211_addr_ta_resolved, tvb,
offset, 6, ether_name);
proto_item_set_hidden(hidden);