aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/hostlist_fddi.c
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2010-08-30 16:10:01 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2010-08-30 16:10:01 +0000
commit10e8fcafea1ce4876b05e025d4b0e5db6a08073f (patch)
tree9ea32300dcac661f69c271986c4b92e56be5bde4 /gtk/hostlist_fddi.c
parentcb21b4ffa2bc72698186509af301ff069d420bec (diff)
Remove some unnecessary includes: a lot of things don't need globals.h and register.h
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34017 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/hostlist_fddi.c')
-rw-r--r--gtk/hostlist_fddi.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk/hostlist_fddi.c b/gtk/hostlist_fddi.c
index 7a67c329f3..d96d311150 100644
--- a/gtk/hostlist_fddi.c
+++ b/gtk/hostlist_fddi.c
@@ -39,7 +39,6 @@
#include <epan/dissectors/packet-fddi.h>
#include "../stat_menu.h"
-#include "../register.h"
#include "gtk/gui_stat_menu.h"
#include "gtk/hostlist_table.h"
@@ -52,7 +51,7 @@ fddi_hostlist_packet(void *pit, packet_info *pinfo, epan_dissect_t *edt _U_, con
const fddi_hdr *ehdr=vip;
/* Take two "add" passes per packet, adding for each direction, ensures that all
- packets are counted properly (even if address is sending to itself)
+ 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, &ehdr->src, 0, TRUE, 1, pinfo->fd->pkt_len, SAT_FDDI, PT_NONE);
add_hostlist_table_data(hosts, &ehdr->dst, 0, FALSE, 1, pinfo->fd->pkt_len, SAT_FDDI, PT_NONE);