aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-avsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-avsp.c')
-rw-r--r--epan/dissectors/packet-avsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-avsp.c b/epan/dissectors/packet-avsp.c
index d1e4413808..3d98bfc27d 100644
--- a/epan/dissectors/packet-avsp.c
+++ b/epan/dissectors/packet-avsp.c
@@ -171,13 +171,13 @@ dissect_avsp(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree, void *data
guint16 encap_proto;
encap_proto = tvb_get_ntohs(tvb, offset);
+ proto_tree_add_uint(avsp_tree, hf_avsp_etype, tvb, offset, 2, encap_proto);
offset += 2;
ethertype_data_t ethertype_data;
ethertype_data.etype = encap_proto;
- ethertype_data.offset_after_ethertype = offset;
+ ethertype_data.payload_offset = offset;
ethertype_data.fh_tree = avsp_tree;
- ethertype_data.etype_id = hf_avsp_etype;
ethertype_data.trailer_id = hf_avsp_trailer;
ethertype_data.fcs_len = 0;