summaryrefslogtreecommitdiff
path: root/ui/gtk/hostlist_tr.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui/gtk/hostlist_tr.c')
-rw-r--r--ui/gtk/hostlist_tr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/hostlist_tr.c b/ui/gtk/hostlist_tr.c
index e58bc4e656..a42ecdf355 100644
--- a/ui/gtk/hostlist_tr.c
+++ b/ui/gtk/hostlist_tr.c
@@ -47,8 +47,8 @@ tr_hostlist_packet(void *pit, packet_info *pinfo, epan_dissect_t *edt _U_, const
/* Take two "add" passes per packet, adding for each direction, ensures that all
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, &trhdr->src, 0, TRUE, 1, pinfo->fd->pkt_len, SAT_TOKENRING, PT_NONE);
- add_hostlist_table_data(hosts, &trhdr->dst, 0, FALSE, 1, pinfo->fd->pkt_len, SAT_TOKENRING, PT_NONE);
+ add_hostlist_table_data(hosts, &trhdr->src, 0, TRUE, 1, pinfo->fd->pkt_len, CONV_TYPE_TOKEN_RING, PT_NONE);
+ add_hostlist_table_data(hosts, &trhdr->dst, 0, FALSE, 1, pinfo->fd->pkt_len, CONV_TYPE_TOKEN_RING, PT_NONE);
return 1;
}