aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-x25.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-10-27 15:00:11 +0000
committerMichael Mann <mmann78@netscape.net>2013-10-27 15:00:11 +0000
commit394f67c1b7ab65b6fb89610ce251be62b8509208 (patch)
treefa05f491785668d1599f3273cf09e03d13f66749 /epan/dissectors/packet-x25.c
parent469fc864e6f949d57366076b05d2a9cad5418e82 (diff)
Allow "circuit dissectors" to pass data between dissectors. Not sure if this is immediately useful (ie remove need for packet_info (private_)data), but opens the possibility.
svn path=/trunk/; revision=52893
Diffstat (limited to 'epan/dissectors/packet-x25.c')
-rw-r--r--epan/dissectors/packet-x25.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-x25.c b/epan/dissectors/packet-x25.c
index 6c15c9ce63..662ea531ba 100644
--- a/epan/dissectors/packet-x25.c
+++ b/epan/dissectors/packet-x25.c
@@ -2025,7 +2025,7 @@ dissect_x25_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
/* See if there's already a dissector for this circuit. */
if (try_circuit_dissector(CT_X25, vc, pinfo->fd->num, next_tvb, pinfo,
- tree)) {
+ tree, NULL)) {
pinfo->private_data = saved_private_data;
return; /* found it and dissected it */
}