aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/t124/packet-t124-template.c
diff options
context:
space:
mode:
Diffstat (limited to 'asn1/t124/packet-t124-template.c')
-rw-r--r--asn1/t124/packet-t124-template.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/asn1/t124/packet-t124-template.c b/asn1/t124/packet-t124-template.c
index b0ad39a48a..1b51a452fa 100644
--- a/asn1/t124/packet-t124-template.c
+++ b/asn1/t124/packet-t124-template.c
@@ -78,7 +78,7 @@ register_t124_ns_dissector(const char *nsKey, new_dissector_t dissector, int pro
{
dissector_handle_t dissector_handle;
- dissector_handle=new_create_dissector_handle(dissector, proto);
+ dissector_handle=create_dissector_handle(dissector, proto);
dissector_add_string("t124.ns", nsKey, dissector_handle);
}
@@ -91,7 +91,7 @@ void register_t124_sd_dissector(packet_info *pinfo _U_, guint32 channelId_param,
dissector_handle_t dissector_handle;
- dissector_handle=new_create_dissector_handle(dissector, proto);
+ dissector_handle=create_dissector_handle(dissector, proto);
dissector_add_uint("t124.sd", channelId_param, dissector_handle);
}
@@ -206,7 +206,7 @@ void proto_register_t124(void) {
t124_ns_dissector_table = register_dissector_table("t124.ns", "T.124 H.221 Non Standard Dissectors", FT_STRING, BASE_NONE, DISSECTOR_TABLE_ALLOW_DUPLICATE);
t124_sd_dissector_table = register_dissector_table("t124.sd", "T.124 H.221 Send Data Dissectors", FT_UINT32, BASE_HEX, DISSECTOR_TABLE_ALLOW_DUPLICATE);
- new_register_dissector("t124", dissect_t124, proto_t124);
+ register_dissector("t124", dissect_t124, proto_t124);
}