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-tacacs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'epan/dissectors/packet-tacacs.c') diff --git a/epan/dissectors/packet-tacacs.c b/epan/dissectors/packet-tacacs.c index c9facbb9f7..a2b461745f 100644 --- a/epan/dissectors/packet-tacacs.c +++ b/epan/dissectors/packet-tacacs.c @@ -281,7 +281,7 @@ proto_reg_handoff_tacacs(void) { dissector_handle_t tacacs_handle; - tacacs_handle = new_create_dissector_handle(dissect_tacacs, proto_tacacs); + tacacs_handle = create_dissector_handle(dissect_tacacs, proto_tacacs); dissector_add_uint("udp.port", UDP_PORT_TACACS, tacacs_handle); } @@ -1278,7 +1278,7 @@ proto_reg_handoff_tacplus(void) { dissector_handle_t tacplus_handle; - tacplus_handle = new_create_dissector_handle(dissect_tacplus, + tacplus_handle = create_dissector_handle(dissect_tacplus, proto_tacplus); dissector_add_uint("tcp.port", TCP_PORT_TACACS, tacplus_handle); } -- cgit v1.2.3