aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-frame.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2006-04-13 19:06:52 +0000
committerGuy Harris <guy@alum.mit.edu>2006-04-13 19:06:52 +0000
commit336cc54807835518aa008f094a8770cdc89189a0 (patch)
treee951a76dc19f3a5044b54da413174ed3c4515621 /epan/dissectors/packet-frame.c
parentd0a8f7e3139c31a134f417a40d1ac2dba3fb6ab5 (diff)
Pass the right tree argument to the DOCSIS dissector if "treat all
frames as DOCSIS" was selected. Fixes bug 872. svn path=/trunk/; revision=17856
Diffstat (limited to 'epan/dissectors/packet-frame.c')
-rw-r--r--epan/dissectors/packet-frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-frame.c b/epan/dissectors/packet-frame.c
index 28d869ceeb..89bb86e154 100644
--- a/epan/dissectors/packet-frame.c
+++ b/epan/dissectors/packet-frame.c
@@ -267,7 +267,7 @@ dissect_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
__try {
#endif
if ((force_docsis_encap) && (docsis_handle)) {
- call_dissector(docsis_handle, tvb, pinfo, tree);
+ call_dissector(docsis_handle, tvb, pinfo, parent_tree);
} else {
if (!dissector_try_port(wtap_encap_dissector_table, pinfo->fd->lnk_t,
tvb, pinfo, parent_tree)) {