aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-kingfisher.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-kingfisher.c')
-rw-r--r--epan/dissectors/packet-kingfisher.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-kingfisher.c b/epan/dissectors/packet-kingfisher.c
index 762e250600..b7fa7cafe8 100644
--- a/epan/dissectors/packet-kingfisher.c
+++ b/epan/dissectors/packet-kingfisher.c
@@ -380,12 +380,12 @@ proto_reg_handoff_kingfisher( void )
dissector_handle_t kingfisher_handle=NULL;
kingfisher_handle = new_create_dissector_handle(dissect_kingfisher_heur, proto_kingfisher);
- dissector_add("tcp.port", TCP_PORT_KINGFISHER, kingfisher_handle);
- dissector_add("udp.port", UDP_PORT_KINGFISHER, kingfisher_handle);
+ dissector_add_uint("tcp.port", TCP_PORT_KINGFISHER, kingfisher_handle);
+ dissector_add_uint("udp.port", UDP_PORT_KINGFISHER, kingfisher_handle);
#ifdef SUPPORT_KINGFISHER_SERIES_2
- dissector_add("tcp.port", TCP_PORT_KINGFISHER_OLD, kingfisher_handle);
- dissector_add("udp.port", UDP_PORT_KINGFISHER_OLD, kingfisher_handle);
+ dissector_add_uint("tcp.port", TCP_PORT_KINGFISHER_OLD, kingfisher_handle);
+ dissector_add_uint("udp.port", UDP_PORT_KINGFISHER_OLD, kingfisher_handle);
#endif
kingfisher_conv_handle = new_create_dissector_handle(dissect_kingfisher_conv, proto_kingfisher);