aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-02-28 11:34:59 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-02-28 11:34:59 +0000
commite761ed72061dfe8dd85f5f78f7f56e57ac97fe7e (patch)
tree06bb04497b6840b0024d728eab2a0db1736ad61a /epan
parent6820a813549cce747b0255fd3fdc7c04daa8ca41 (diff)
Add private extensions under the right tree.
svn path=/trunk/; revision=36089
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-gtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-gtp.c b/epan/dissectors/packet-gtp.c
index bd9a3984a3..102d88bf4c 100644
--- a/epan/dissectors/packet-gtp.c
+++ b/epan/dissectors/packet-gtp.c
@@ -6581,7 +6581,7 @@ static int decode_gtp_priv_ext(tvbuff_t * tvb, int offset, packet_info * pinfo _
if (length > 2){
proto_tree_add_item(ext_tree_priv_ext, hf_gtp_ext_val, tvb, offset, length - 2, ENC_BIG_ENDIAN);
next_tvb = tvb_new_subset_remaining(tvb, offset);
- dissector_try_uint(gtp_priv_ext_dissector_table, ext_id, next_tvb, pinfo, tree);
+ dissector_try_uint(gtp_priv_ext_dissector_table, ext_id, next_tvb, pinfo, ext_tree_priv_ext);
}
}