aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-04-13 19:06:52 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-04-13 19:06:52 +0000
commita9a4c2499f14ce12913cb1eebc01aaaa3d0b370d (patch)
treee951a76dc19f3a5044b54da413174ed3c4515621 /epan
parente2241c72c5659b18b5957e30409f6d06e7d8a543 (diff)
Pass the right tree argument to the DOCSIS dissector if "treat all
frames as DOCSIS" was selected. Fixes bug 872. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17856 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan')
-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)) {