aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/endpoint_talkers_fc.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-09-04 23:37:45 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-09-04 23:37:45 +0000
commite3cde3715e5e62df4056b4ae7d43f18373fb404b (patch)
tree776924cc24c439f1ad66443442e702fc3460a3fe /gtk/endpoint_talkers_fc.c
parent4f893552d0304b0416d9cabe210c7ecb358c2a82 (diff)
Update to the conversations list.
Rename it from Endpoint Talkers to : Conversation List Change command line arguments to both tethereal and ethereal to be -z conv,<type> to reflect the new name Conversations This is the last time the tethereal cmd line arg is changed. But now it has a proper intuitive name at least. io,users was weird talkers was too close to names used in other tools svn path=/trunk/; revision=8379
Diffstat (limited to 'gtk/endpoint_talkers_fc.c')
-rw-r--r--gtk/endpoint_talkers_fc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/endpoint_talkers_fc.c b/gtk/endpoint_talkers_fc.c
index f155412a46..38228cfd84 100644
--- a/gtk/endpoint_talkers_fc.c
+++ b/gtk/endpoint_talkers_fc.c
@@ -1,7 +1,7 @@
/* endpoint_talkers_fc.c
* endpoint_talkers_fc 2003 Ronnie Sahlberg
*
- * $Id: endpoint_talkers_fc.c,v 1.13 2003/09/04 23:11:03 sahlberg Exp $
+ * $Id: endpoint_talkers_fc.c,v 1.14 2003/09/04 23:37:45 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -66,8 +66,8 @@ gtk_fc_talkers_init(char *optarg)
{
char *filter=NULL;
- if(!strncmp(optarg,"talkers,fc,",11)){
- filter=optarg+11;
+ if(!strncmp(optarg,"conv,fc,",8)){
+ filter=optarg+8;
} else {
filter=NULL;
}
@@ -80,14 +80,14 @@ gtk_fc_talkers_init(char *optarg)
static void
gtk_fc_endpoints_cb(GtkWidget *w _U_, gpointer d _U_)
{
- gtk_fc_talkers_init("talkers,fc");
+ gtk_fc_talkers_init("conv,fc");
}
void
register_tap_menu_fc_talkers(void)
{
- register_tap_menu_item("Endpoint Talkers/Fibre Channel", gtk_fc_endpoints_cb);
+ register_tap_menu_item("Conversation List/Fibre Channel", gtk_fc_endpoints_cb);
}
@@ -96,6 +96,6 @@ register_tap_menu_fc_talkers(void)
void
register_tap_listener_fc_talkers(void)
{
- register_ethereal_tap("talkers,fc", gtk_fc_talkers_init);
+ register_ethereal_tap("conv,fc", gtk_fc_talkers_init);
}