aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mmse.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-12-08 22:49:44 -0500
committerMichael Mann <mmann78@netscape.net>2015-12-09 12:37:36 +0000
commit443a7ed259f40ba5cfcc7d9c1e0fe5d7fee0d18c (patch)
tree4ff5916a71c682282482219343406bbf3f03da8b /epan/dissectors/packet-mmse.c
parent724aeeb2b878e2044057543ea5ce2593c6661088 (diff)
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 <a.broman58@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-mmse.c')
-rw-r--r--epan/dissectors/packet-mmse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mmse.c b/epan/dissectors/packet-mmse.c
index 1476741f9e..52553f2f44 100644
--- a/epan/dissectors/packet-mmse.c
+++ b/epan/dissectors/packet-mmse.c
@@ -1667,9 +1667,9 @@ proto_reg_handoff_mmse(void)
dissector_handle_t mmse_encapsulated_handle;
heur_dissector_add("wsp", dissect_mmse_heur, "MMS Message Encapsulation over WSP", "mmse_wsp", proto_mmse, HEURISTIC_ENABLE);
- mmse_standalone_handle = new_create_dissector_handle(
+ mmse_standalone_handle = create_dissector_handle(
dissect_mmse_standalone, proto_mmse);
- mmse_encapsulated_handle = new_create_dissector_handle(
+ mmse_encapsulated_handle = create_dissector_handle(
dissect_mmse_encapsulated, proto_mmse);
/* As the media types for WSP and HTTP are the same, the WSP dissector
* uses the same string dissector table as the HTTP protocol. */