aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2005-05-21 15:47:18 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2005-05-21 15:47:18 +0000
commit86a30241db54118a909b4f5d3b491adadf53f567 (patch)
tree3afef09eedd1fc14e4388a18349ede43be66aaec
parent4eec5790415d91ce39939dc30512cfd632fb26b3 (diff)
PDU, GOP and GOG should be at the same level not nested
svn path=/trunk/; revision=14415
-rw-r--r--plugins/mate/packet-mate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mate/packet-mate.c b/plugins/mate/packet-mate.c
index 879bafd350..dbf749c0f2 100644
--- a/plugins/mate/packet-mate.c
+++ b/plugins/mate/packet-mate.c
@@ -284,10 +284,10 @@ void mate_pdu_tree(mate_pdu *pdu, tvbuff_t *tvb, proto_tree* tree) {
if (pdu->gop) {
proto_tree_add_float(pdu_tree,pdu->cfg->hfid_pdu_time_in_gop, tvb, 0, 0, pdu->time_in_gop);
- mate_gop_tree(pdu_tree,tvb,pdu->gop);
+ mate_gop_tree(tree,tvb,pdu->gop);
if (pdu->gop->gog)
- mate_gog_tree(pdu_tree,tvb,pdu->gop->gog,pdu->gop);
+ mate_gog_tree(tree,tvb,pdu->gop->gog,pdu->gop);
}
if (pdu->avpl) {