diff options
author | Jakub Zawadzki <darkjames-ws@darkjames.pl> | 2012-09-11 08:28:07 +0000 |
---|---|---|
committer | Jakub Zawadzki <darkjames-ws@darkjames.pl> | 2012-09-11 08:28:07 +0000 |
commit | 9f92dc93c546a59e08e2fef4b742ddda39230606 (patch) | |
tree | 977d0908d3a418c567ea31fcec2d863745069f81 /epan/dissectors/packet-catapult-dct2000.c | |
parent | dee4443809a9cf723b68548391b1a140d6a986e5 (diff) | |
download | wireshark-9f92dc93c546a59e08e2fef4b742ddda39230606.tar.gz wireshark-9f92dc93c546a59e08e2fef4b742ddda39230606.tar.bz2 wireshark-9f92dc93c546a59e08e2fef4b742ddda39230606.zip |
Add data parameter to call_dissector_only.
svn path=/trunk/; revision=44872
Diffstat (limited to 'epan/dissectors/packet-catapult-dct2000.c')
-rw-r--r-- | epan/dissectors/packet-catapult-dct2000.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-catapult-dct2000.c b/epan/dissectors/packet-catapult-dct2000.c index 8d4ae9dafb..5e052bbdb1 100644 --- a/epan/dissectors/packet-catapult-dct2000.c +++ b/epan/dissectors/packet-catapult-dct2000.c @@ -835,7 +835,7 @@ static void dissect_rlc_umts(tvbuff_t *tvb, gint offset, /* Call UMTS RLC dissector */ if (rlc_umts_handle != 0) { rlc_tvb = tvb_new_subset(tvb, offset, -1, tvb_length_remaining(tvb, offset)); - call_dissector_only(rlc_umts_handle, rlc_tvb, pinfo, tree); + call_dissector_only(rlc_umts_handle, rlc_tvb, pinfo, tree, NULL); } } } @@ -1034,7 +1034,7 @@ static void dissect_rrc_lte(tvbuff_t *tvb, gint offset, /* Send to RRC dissector, if got here, have sub-dissector and some data left */ if ((protocol_handle != NULL) && (tvb_length_remaining(tvb, offset) > 0)) { rrc_tvb = tvb_new_subset(tvb, offset, -1, tvb_length_remaining(tvb, offset)); - call_dissector_only(protocol_handle, rrc_tvb, pinfo, tree); + call_dissector_only(protocol_handle, rrc_tvb, pinfo, tree, NULL); } } @@ -1097,7 +1097,7 @@ static void dissect_ccpri_lte(tvbuff_t *tvb, gint offset, protocol_handle = find_dissector("lapb"); if ((protocol_handle != NULL) && (tvb_length_remaining(tvb, offset) > 0)) { ccpri_tvb = tvb_new_subset(tvb, offset, length, length); - call_dissector_only(protocol_handle, ccpri_tvb, pinfo, tree); + call_dissector_only(protocol_handle, ccpri_tvb, pinfo, tree, NULL); } } @@ -1292,7 +1292,7 @@ static void dissect_pdcp_lte(tvbuff_t *tvb, gint offset, /* Call PDCP LTE dissector */ pdcp_lte_tvb = tvb_new_subset(tvb, offset, -1, tvb_length_remaining(tvb, offset)); - call_dissector_only(pdcp_lte_handle, pdcp_lte_tvb, pinfo, tree); + call_dissector_only(pdcp_lte_handle, pdcp_lte_tvb, pinfo, tree, NULL); break; @@ -2085,7 +2085,7 @@ static void check_for_oob_mac_lte_events(packet_info *pinfo, tvbuff_t *tvb, prot /* Call MAC dissector */ mac_lte_tvb = tvb_new_subset(tvb, 0, 0, 0); - call_dissector_only(mac_lte_handle, mac_lte_tvb, pinfo, tree); + call_dissector_only(mac_lte_handle, mac_lte_tvb, pinfo, tree, NULL); } @@ -2865,7 +2865,7 @@ dissect_catapult_dct2000(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) if (protocol_handle != 0) { /* Dissect the remainder of the frame using chosen protocol handle */ next_tvb = tvb_new_subset(tvb, offset, -1, tvb_reported_length(tvb)-offset); - sub_dissector_result = call_dissector_only(protocol_handle, next_tvb, pinfo, tree); + sub_dissector_result = call_dissector_only(protocol_handle, next_tvb, pinfo, tree, NULL); } |