From 443a7ed259f40ba5cfcc7d9c1e0fe5d7fee0d18c Mon Sep 17 00:00:00 2001 From: Michael Mann Date: Tue, 8 Dec 2015 22:49:44 -0500 Subject: new_create_dissector_handle -> create_dissector_handle for dissector directory. Some of the ASN.1 dissectors still generate a new_create_dissector_handle from the tool itself, so leave those for now. Change-Id: Ic6e5803b1444d7ac24070949f5fd557909a5641f Reviewed-on: https://code.wireshark.org/review/12484 Petri-Dish: Anders Broman Reviewed-by: Michael Mann --- epan/dissectors/packet-mp4ves.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'epan/dissectors/packet-mp4ves.c') diff --git a/epan/dissectors/packet-mp4ves.c b/epan/dissectors/packet-mp4ves.c index d8d0163ade..3990214316 100644 --- a/epan/dissectors/packet-mp4ves.c +++ b/epan/dissectors/packet-mp4ves.c @@ -1047,12 +1047,12 @@ proto_reg_handoff_mp4ves(void) dissector_add_string("rtp_dyn_payload_type","MP4V-ES", mp4ves_handle); mp4ves_prefs_initialized = TRUE; - mp4ves_name_handle = new_create_dissector_handle(dissect_mp4ves_name, proto_mp4ves); + mp4ves_name_handle = create_dissector_handle(dissect_mp4ves_name, proto_mp4ves); for (ftr=mp4ves_capability_tab; ftr->id; ftr++) { if (ftr->name) dissector_add_string("h245.gef.name", ftr->id, mp4ves_name_handle); if (ftr->content_pdu) - dissector_add_string("h245.gef.content", ftr->id, new_create_dissector_handle(ftr->content_pdu, proto_mp4ves)); + dissector_add_string("h245.gef.content", ftr->id, create_dissector_handle(ftr->content_pdu, proto_mp4ves)); } }else{ if ( dynamic_payload_type > 95 ) -- cgit v1.2.3