aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-q931.c
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2012-09-11 08:28:07 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2012-09-11 08:28:07 +0000
commit9f92dc93c546a59e08e2fef4b742ddda39230606 (patch)
tree977d0908d3a418c567ea31fcec2d863745069f81 /epan/dissectors/packet-q931.c
parentdee4443809a9cf723b68548391b1a140d6a986e5 (diff)
Add data parameter to call_dissector_only.
svn path=/trunk/; revision=44872
Diffstat (limited to 'epan/dissectors/packet-q931.c')
-rw-r--r--epan/dissectors/packet-q931.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-q931.c b/epan/dissectors/packet-q931.c
index 6dd385bc84..2e826710be 100644
--- a/epan/dissectors/packet-q931.c
+++ b/epan/dissectors/packet-q931.c
@@ -2505,7 +2505,7 @@ dissect_q931_user_user_ie(tvbuff_t *tvb, packet_info *pinfo, int offset, int len
next_tvb = tvb_new_subset(tvb, offset, len, len);
proto_tree_add_text(tree, tvb, offset, len, "User information: %d octets", len);
if (!dissector_try_heuristic(q931_user_heur_subdissector_list, next_tvb, pinfo, tree, NULL)) {
- call_dissector_only(data_handle, next_tvb, pinfo, tree);
+ call_dissector_only(data_handle, next_tvb, pinfo, tree, NULL);
}
break;