aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/hostlist_fc.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-02-23 05:35:47 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-02-23 05:35:47 +0000
commit5a7ebc45d6a8700bc5f0a78412634f5dd65b41fe (patch)
treed1713dd2a167ed5681c62475c2dd66153a9defbc /gtk/hostlist_fc.c
parent7d310702263ebccaee3c2117ebcb366ba3806c97 (diff)
Make the tap names for host statistics use "hosts" instead of "conv",
and make the tap names for endpoint statistics use "endpoints" instead of "conv". Similarly, make the titles for their windows say "Hosts" or "Endpoints" rather than "Conversations". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10195 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/hostlist_fc.c')
-rw-r--r--gtk/hostlist_fc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/hostlist_fc.c b/gtk/hostlist_fc.c
index e64e2ac73f..06160bd9a0 100644
--- a/gtk/hostlist_fc.c
+++ b/gtk/hostlist_fc.c
@@ -1,7 +1,7 @@
/* hostlist_fc.c 2004 Ian Schorr
* modified from endpoint_talkers_fc.c 2003 Ronnie Sahlberg
*
- * $Id: hostlist_fc.c,v 1.2 2004/02/22 18:44:01 ulfl Exp $
+ * $Id: hostlist_fc.c,v 1.3 2004/02/23 05:35:46 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -62,13 +62,13 @@ gtk_fc_hostlist_init(char *optarg)
{
char *filter=NULL;
- if(!strncmp(optarg,"conv,fc,",8)){
- filter=optarg+8;
+ if(!strncmp(optarg,"hosts,fc,",9)){
+ filter=optarg+9;
} else {
filter=NULL;
}
- init_hostlist_table(TRUE, "Fibre Channel", "fc", filter, (void *)fc_hostlist_packet);
+ init_hostlist_table(TRUE, "Fibre Channel Hosts", "fc", filter, (void *)fc_hostlist_packet);
}
@@ -76,14 +76,14 @@ gtk_fc_hostlist_init(char *optarg)
static void
gtk_fc_hostlist_cb(GtkWidget *w _U_, gpointer d _U_)
{
- gtk_fc_hostlist_init("conv,fc");
+ gtk_fc_hostlist_init("hosts,fc");
}
void
register_tap_listener_fc_hostlist(void)
{
- register_ethereal_tap("conv,fc", gtk_fc_hostlist_init);
+ register_ethereal_tap("hosts,fc", gtk_fc_hostlist_init);
register_tap_menu_item("Fibre Channel/Host List", REGISTER_TAP_LAYER_DATA_LINK,
gtk_fc_hostlist_cb, NULL, NULL, NULL);