aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.heuristic
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-12-08 21:10:31 -0500
committerMichael Mann <mmann78@netscape.net>2015-12-09 03:12:44 +0000
commit12f6311b20658aba7b1b441b0260f88401cd06fb (patch)
tree4698afd8c2cadabb0f38a85a5ea0525560a7b52d /doc/README.heuristic
parenta391a70b3b05c3a3c95bcb9020b37adb6c0af010 (diff)
"new" dissector API -> dissector API for docs/examples
Change-Id: If862aadbd483933782d5979a3c0be2cb3c08a480 Reviewed-on: https://code.wireshark.org/review/12481 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'doc/README.heuristic')
-rw-r--r--doc/README.heuristic4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/README.heuristic b/doc/README.heuristic
index bac71b5677..38c6ae2c2d 100644
--- a/doc/README.heuristic
+++ b/doc/README.heuristic
@@ -210,9 +210,9 @@ dissect_PROTOABBREV_heur_udp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree
void
proto_reg_handoff_PROTOABBREV(void)
{
- PROTOABBREV_tcp_handle = new_create_dissector_handle(dissect_PROTOABBREV_tcp,
+ PROTOABBREV_tcp_handle = create_dissector_handle(dissect_PROTOABBREV_tcp,
proto_PROTOABBREV);
- PROTOABBREV_pdu_handle = new_create_dissector_handle(dissect_PROTOABBREV_pdu,
+ PROTOABBREV_pdu_handle = create_dissector_handle(dissect_PROTOABBREV_pdu,
proto_PROTOABBREV);
/* register as heuristic dissector for both TCP and UDP */