aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee80211.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-09-15 19:38:23 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-09-15 19:38:23 +0000
commit2a43bc3fccaec85fd612d730b6b8eaf73cf9b724 (patch)
treef875823860a08c864b929d765b760daeb946c824 /epan/dissectors/packet-ieee80211.c
parenta0f614494bc6ba766c018ce6646169abf6cfdc02 (diff)
From Jouni Malinen:
Remove unnecessary Action subtree https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6339 svn path=/trunk/; revision=39011
Diffstat (limited to 'epan/dissectors/packet-ieee80211.c')
-rw-r--r--epan/dissectors/packet-ieee80211.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index 53b01b611f..f5dae91072 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -4186,7 +4186,7 @@ add_fixed_field(proto_tree * tree, tvbuff_t * tvb, int offset, int lfcode)
proto_tree *action_tree;
action_item = proto_tree_add_item(tree, hf_ieee80211_action, tvb, offset, 1, TRUE);
- action_tree = proto_item_add_subtree(action_item, ett_sched_tree);
+ action_tree = tree;
switch (tvb_get_guint8(tvb, offset) & 0x7f)
{