aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-12-10 20:57:44 -0500
committerMichael Mann <mmann78@netscape.net>2015-12-11 03:42:52 +0000
commit210dc9b3019246803f97880802c8faf9a70a4aa8 (patch)
tree9d10ce640e9effd1421fb03c103967bfc2534942 /tools
parent1474f49f190e5cee4d049d91d360c3d7780ec3d8 (diff)
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 'tools')
-rw-r--r--tools/npl/npl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/npl/npl.c b/tools/npl/npl.c
index d93b5f367b..096b4681ea 100644
--- a/tools/npl/npl.c
+++ b/tools/npl/npl.c
@@ -1843,7 +1843,7 @@ gen_proto_handoff(FILE *f, const char *proto_name)
"proto_reg_handoff_%s(void)\n"
"{\n", proto_name);
- gen_fprintf(f, "\tdissector_handle_t %s_handle = new_create_dissector_handle(dissect_%s, proto_%s);\n", proto_name, proto_name, proto_name);
+ gen_fprintf(f, "\tdissector_handle_t %s_handle = create_dissector_handle(dissect_%s, proto_%s);\n", proto_name, proto_name, proto_name);
#if 0
dissector_add_uint("REG", XXX, %s_handle);