diff options
author | Michael Mann <mmann78@netscape.net> | 2015-12-10 20:57:44 -0500 |
---|---|---|
committer | Michael Mann <mmann78@netscape.net> | 2015-12-11 03:42:52 +0000 |
commit | 210dc9b3019246803f97880802c8faf9a70a4aa8 (patch) | |
tree | 9d10ce640e9effd1421fb03c103967bfc2534942 /plugins/gryphon/packet-gryphon.c | |
parent | 1474f49f190e5cee4d049d91d360c3d7780ec3d8 (diff) | |
download | wireshark-210dc9b3019246803f97880802c8faf9a70a4aa8.tar.gz wireshark-210dc9b3019246803f97880802c8faf9a70a4aa8.tar.bz2 wireshark-210dc9b3019246803f97880802c8faf9a70a4aa8.zip |
new_create_dissector_handle -> create_dissector_handle for plugins.
Change-Id: I0d485b1337c669291ad58b6c096657ce2db353c8
Reviewed-on: https://code.wireshark.org/review/12516
Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'plugins/gryphon/packet-gryphon.c')
-rw-r--r-- | plugins/gryphon/packet-gryphon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gryphon/packet-gryphon.c b/plugins/gryphon/packet-gryphon.c index ace9a2cd7b..005c93bc88 100644 --- a/plugins/gryphon/packet-gryphon.c +++ b/plugins/gryphon/packet-gryphon.c @@ -2862,7 +2862,7 @@ proto_reg_handoff_gryphon(void) { dissector_handle_t gryphon_handle; - gryphon_handle = new_create_dissector_handle(dissect_gryphon, proto_gryphon); + gryphon_handle = create_dissector_handle(dissect_gryphon, proto_gryphon); dissector_add_uint("tcp.port", 7000, gryphon_handle); } |