summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-rtp.c
diff options
context:
space:
mode:
authorMichal Labedzki <michal.labedzki@tieto.com>2014-05-24 19:01:28 +0200
committerMichal Labedzki <michal.labedzki@tieto.com>2014-05-30 11:22:32 +0000
commit788228428eab63a794f029e4ba6ee3b641943a36 (patch)
treeb80b420b6b90cc796051955a192b8839054b071e /epan/dissectors/packet-rtp.c
parent8515bd7633412342f579ad2d51573052c37a0b57 (diff)
downloadwireshark-788228428eab63a794f029e4ba6ee3b641943a36.tar.gz
Bluetooth: Fix Content Protection call for VDP
Change-Id: I20a29fdb7d5737173c5b589fc8832b0b997bef2a Reviewed-on: https://code.wireshark.org/review/1877 Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
Diffstat (limited to 'epan/dissectors/packet-rtp.c')
-rw-r--r--epan/dissectors/packet-rtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtp.c b/epan/dissectors/packet-rtp.c
index 4e2f79e710..72c41fd693 100644
--- a/epan/dissectors/packet-rtp.c
+++ b/epan/dissectors/packet-rtp.c
@@ -1481,7 +1481,7 @@ process_rtp_payload(tvbuff_t *newtvb, packet_info *pinfo, proto_tree *tree,
if (p_conv_data->btvdp_info->content_protection_type == BTAVDTP_CONTENT_PROTECTION_TYPE_SCMS_T) {
nexttvb = tvb_new_subset(newtvb, 0, 1, 1);
- call_dissector(bta2dp_content_protection_header_scms_t, nexttvb, pinfo, tree);
+ call_dissector(btvdp_content_protection_header_scms_t, nexttvb, pinfo, tree);
suboffset = 1;
}