aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/hostlist_sctp.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui/gtk/hostlist_sctp.c')
-rw-r--r--ui/gtk/hostlist_sctp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/hostlist_sctp.c b/ui/gtk/hostlist_sctp.c
index 77a530762f..09ddfbe808 100644
--- a/ui/gtk/hostlist_sctp.c
+++ b/ui/gtk/hostlist_sctp.c
@@ -47,9 +47,9 @@ sctp_hostlist_packet(void *pit, packet_info *pinfo, epan_dissect_t *edt _U_, con
packets are counted properly (even if address is sending to itself)
XXX - this could probably be done more efficiently inside hostlist_table */
add_hostlist_table_data(hosts, &sctphdr->ip_src, sctphdr->sport, TRUE, 1,
- pinfo->fd->pkt_len, SAT_NONE, PT_SCTP);
+ pinfo->fd->pkt_len, CONV_TYPE_SCTP, PT_SCTP);
add_hostlist_table_data(hosts, &sctphdr->ip_dst, sctphdr->dport, FALSE, 1,
- pinfo->fd->pkt_len, SAT_NONE, PT_SCTP);
+ pinfo->fd->pkt_len, CONV_TYPE_SCTP, PT_SCTP);
return 1;
}