aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pkixtsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-pkixtsp.c')
-rw-r--r--epan/dissectors/packet-pkixtsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-pkixtsp.c b/epan/dissectors/packet-pkixtsp.c
index a2f6bfe2ba..d90cdf18dd 100644
--- a/epan/dissectors/packet-pkixtsp.c
+++ b/epan/dissectors/packet-pkixtsp.c
@@ -577,10 +577,10 @@ void proto_reg_handoff_pkixtsp(void) {
dissector_handle_t timestamp_reply_handle;
dissector_handle_t timestamp_query_handle;
- timestamp_reply_handle = new_create_dissector_handle(dissect_timestamp_reply, proto_pkixtsp);
+ timestamp_reply_handle = create_dissector_handle(dissect_timestamp_reply, proto_pkixtsp);
dissector_add_string("media_type", "application/timestamp-reply", timestamp_reply_handle);
- timestamp_query_handle = new_create_dissector_handle(dissect_timestamp_query, proto_pkixtsp);
+ timestamp_query_handle = create_dissector_handle(dissect_timestamp_query, proto_pkixtsp);
dissector_add_string("media_type", "application/timestamp-query", timestamp_query_handle);