aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/wimax/msg_rep.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/wimax/msg_rep.c')
-rw-r--r--plugins/wimax/msg_rep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/wimax/msg_rep.c b/plugins/wimax/msg_rep.c
index ba1fc9406f..4b1f60ccff 100644
--- a/plugins/wimax/msg_rep.c
+++ b/plugins/wimax/msg_rep.c
@@ -1555,10 +1555,10 @@ proto_reg_handoff_mac_mgmt_msg_rep(void)
{
dissector_handle_t rep_handle;
- rep_handle = new_create_dissector_handle(dissect_mac_mgmt_msg_rep_req_decoder, proto_mac_mgmt_msg_rep_decoder);
+ rep_handle = create_dissector_handle(dissect_mac_mgmt_msg_rep_req_decoder, proto_mac_mgmt_msg_rep_decoder);
dissector_add_uint("wmx.mgmtmsg", MAC_MGMT_MSG_REP_REQ, rep_handle);
- rep_handle = new_create_dissector_handle(dissect_mac_mgmt_msg_rep_rsp_decoder, proto_mac_mgmt_msg_rep_decoder);
+ rep_handle = create_dissector_handle(dissect_mac_mgmt_msg_rep_rsp_decoder, proto_mac_mgmt_msg_rep_decoder);
dissector_add_uint("wmx.mgmtmsg", MAC_MGMT_MSG_REP_RSP, rep_handle);
}