summaryrefslogtreecommitdiff
path: root/gtk/hostlist_ipx.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-02-23 05:35:47 +0000
committerGuy Harris <guy@alum.mit.edu>2004-02-23 05:35:47 +0000
commitab788d26886a3f1b24729e3db1e83f937560e1ba (patch)
treed1713dd2a167ed5681c62475c2dd66153a9defbc /gtk/hostlist_ipx.c
parent59b11937631903807a1c00cfb052c27124a954c8 (diff)
downloadwireshark-ab788d26886a3f1b24729e3db1e83f937560e1ba.tar.gz
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". svn path=/trunk/; revision=10195
Diffstat (limited to 'gtk/hostlist_ipx.c')
-rw-r--r--gtk/hostlist_ipx.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/hostlist_ipx.c b/gtk/hostlist_ipx.c
index 79cb79a087..6ffeaa84e9 100644
--- a/gtk/hostlist_ipx.c
+++ b/gtk/hostlist_ipx.c
@@ -1,7 +1,7 @@
/* hostlist_ipx.c 2004 Ian Schorr
* modified from endpoint_talkers_ipx.c 2003 Ronnie Sahlberg
*
- * $Id: hostlist_ipx.c,v 1.2 2004/02/22 18:44:02 ulfl Exp $
+ * $Id: hostlist_ipx.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_ipx_hostlist_init(char *optarg)
{
char *filter=NULL;
- if(!strncmp(optarg,"conv,ipx,",9)){
- filter=optarg+9;
+ if(!strncmp(optarg,"hosts,ipx,",10)){
+ filter=optarg+10;
} else {
filter=NULL;
}
- init_hostlist_table(TRUE, "IPX", "ipx", filter, (void *)ipx_hostlist_packet);
+ init_hostlist_table(TRUE, "IPX Hosts", "ipx", filter, (void *)ipx_hostlist_packet);
}
@@ -76,14 +76,14 @@ gtk_ipx_hostlist_init(char *optarg)
static void
gtk_ipx_hostlist_cb(GtkWidget *w _U_, gpointer d _U_)
{
- gtk_ipx_hostlist_init("conv,ipx");
+ gtk_ipx_hostlist_init("hosts,ipx");
}
void
register_tap_listener_ipx_hostlist(void)
{
- register_ethereal_tap("conv,ipx", gtk_ipx_hostlist_init);
+ register_ethereal_tap("hosts,ipx", gtk_ipx_hostlist_init);
register_tap_menu_item("IPX/Host List", REGISTER_TAP_LAYER_NETWORK,
gtk_ipx_hostlist_cb, NULL, NULL, NULL);