aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bat.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-bat.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-bat.c')
-rw-r--r--epan/dissectors/packet-bat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-bat.c b/epan/dissectors/packet-bat.c
index 787fe6d9e2..36ff911c0c 100644
--- a/epan/dissectors/packet-bat.c
+++ b/epan/dissectors/packet-bat.c
@@ -885,9 +885,9 @@ void proto_reg_handoff_bat(void)
bat_tap = register_tap("batman");
bat_follow_tap = register_tap("batman_follow");
- batman_handle = new_create_dissector_handle(dissect_bat_batman, proto_bat_plugin);
- gw_handle = new_create_dissector_handle(dissect_bat_gw, proto_bat_gw);
- vis_handle = new_create_dissector_handle(dissect_bat_vis, proto_bat_vis);
+ batman_handle = create_dissector_handle(dissect_bat_batman, proto_bat_plugin);
+ gw_handle = create_dissector_handle(dissect_bat_gw, proto_bat_gw);
+ vis_handle = create_dissector_handle(dissect_bat_vis, proto_bat_vis);
ip_handle = find_dissector("ip");
data_handle = find_dissector("data");