aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ppp.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-12-08 23:04:01 -0500
committerMichael Mann <mmann78@netscape.net>2015-12-09 12:38:06 +0000
commit31a54708f42fd5cdbe03c6872c4ff137008fb477 (patch)
tree647ae79c8a5c29b83029d94b8f1b0e275163aa2b /epan/dissectors/packet-ppp.c
parent443a7ed259f40ba5cfcc7d9c1e0fe5d7fee0d18c (diff)
new_register_dissector -> register_dissector for dissector directory.
Change-Id: Ie39ef054a4a942687bd079f3a4d8c2cc55d5f22c Reviewed-on: https://code.wireshark.org/review/12485 Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-ppp.c')
-rw-r--r--epan/dissectors/packet-ppp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-ppp.c b/epan/dissectors/packet-ppp.c
index 89425000fa..f533683258 100644
--- a/epan/dissectors/packet-ppp.c
+++ b/epan/dissectors/packet-ppp.c
@@ -5551,9 +5551,9 @@ proto_register_ppp(void)
ppp_subdissector_table = register_dissector_table("ppp.protocol",
"PPP protocol", FT_UINT16, BASE_HEX, DISSECTOR_TABLE_NOT_ALLOW_DUPLICATE);
- new_register_dissector("ppp_hdlc", dissect_ppp_hdlc, proto_ppp);
- new_register_dissector("ppp_lcp_options", dissect_lcp_options, proto_ppp);
- new_register_dissector("ppp", dissect_ppp, proto_ppp);
+ register_dissector("ppp_hdlc", dissect_ppp_hdlc, proto_ppp);
+ register_dissector("ppp_lcp_options", dissect_lcp_options, proto_ppp);
+ register_dissector("ppp", dissect_ppp, proto_ppp);
/* Register the preferences for the ppp protocol */
ppp_module = prefs_register_protocol(proto_ppp, NULL);