Skip to content

Commit ad0481c

Browse files
author
Nick Briggs
committed
Refs #100964 Replace calls to deprecated dissector_add/delete() with preferred dissector_add/delete_uint()
1 parent a779d50 commit ad0481c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

apps/wireshark/ccn/packet-ccn.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,11 @@ proto_reg_handoff_ccn(void)
229229
initialized = TRUE;
230230
}
231231
if (current_ccn_port != -1) {
232-
dissector_delete("udp.port", current_ccn_port, ccn_handle);
233-
dissector_delete("tcp.port", current_ccn_port, ccn_handle);
232+
dissector_delete_uint("udp.port", current_ccn_port, ccn_handle);
233+
dissector_delete_uint("tcp.port", current_ccn_port, ccn_handle);
234234
}
235-
dissector_add("udp.port", global_ccn_port, ccn_handle);
236-
dissector_add("tcp.port", global_ccn_port, ccn_handle);
235+
dissector_add_uint("udp.port", global_ccn_port, ccn_handle);
236+
dissector_add_uint("tcp.port", global_ccn_port, ccn_handle);
237237
current_ccn_port = global_ccn_port;
238238
}
239239

0 commit comments

Comments
 (0)