aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tcap.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-03-05 10:05:03 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-03-05 10:05:03 +0000
commita937c2e2932a9c089c038f020a59b9417b0c2a53 (patch)
tree66faff92d7683d629ffc72b0371b64a10574e3f6 /packet-tcap.c
parent68fb44fa69da90439520b244813bd3537082eead (diff)
From Michael Lum: show Component data even if it is handled by another
dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10311 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-tcap.c')
-rw-r--r--packet-tcap.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-tcap.c b/packet-tcap.c
index fe073b30f1..b961dd5335 100644
--- a/packet-tcap.c
+++ b/packet-tcap.c
@@ -9,7 +9,7 @@
*
* (append your name here for newer version)
*
- * $Id: packet-tcap.c,v 1.7 2004/02/20 10:43:12 guy Exp $
+ * $Id: packet-tcap.c,v 1.8 2004/03/05 10:05:03 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1557,6 +1557,8 @@ dissect_tcap_components(ASN1_SCK *asn1, proto_tree *tcap_tree)
/* process component data */
if (dissector_try_port(tcap_itu_ssn_dissector_table, g_pinfo->match_port, next_tvb, g_pinfo, g_tcap_tree))
{
+ proto_tree_add_text(subtree, asn1->tvb, asn1->offset, comp_len, "Component");
+
asn1->offset += comp_len;
}
else