aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pim.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2013-04-06 11:53:58 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2013-04-06 11:53:58 +0000
commit4d802ca4b930f6c365aa0af46a6981e29e662522 (patch)
tree5817a3576bc690eceedf8b485862bb710cb510ee /epan/dissectors/packet-pim.c
parent02db28c2a97e6b97d320e98e9acd0eb007f4baa8 (diff)
Show the PIMv2 register flags in the correct tree.
svn path=/trunk/; revision=48757
Diffstat (limited to 'epan/dissectors/packet-pim.c')
-rw-r--r--epan/dissectors/packet-pim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-pim.c b/epan/dissectors/packet-pim.c
index 5ff0caf32f..e971ac3d54 100644
--- a/epan/dissectors/packet-pim.c
+++ b/epan/dissectors/packet-pim.c
@@ -862,7 +862,7 @@ dissect_pim(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) {
proto_tree *flag_tree = NULL;
proto_item *tiflag;
- tiflag = proto_tree_add_item(flag_tree, hf_pim_register_flag, tvb, offset, 4, ENC_BIG_ENDIAN);
+ tiflag = proto_tree_add_item(pimopt_tree, hf_pim_register_flag, tvb, offset, 4, ENC_BIG_ENDIAN);
flag_tree = proto_item_add_subtree(tiflag, ett_pim);
proto_tree_add_item(flag_tree, hf_pim_register_flag_border, tvb, offset, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(flag_tree, hf_pim_register_flag_null_register, tvb, offset, 4, ENC_BIG_ENDIAN);