aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/endpoint_talkers_tcpip.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_tcpip.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_tcpip.c')
-rw-r--r--gtk/endpoint_talkers_tcpip.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/endpoint_talkers_tcpip.c b/gtk/endpoint_talkers_tcpip.c
index 663b6efdbf..9619e395fb 100644
--- a/gtk/endpoint_talkers_tcpip.c
+++ b/gtk/endpoint_talkers_tcpip.c
@@ -1,7 +1,7 @@
/* endpoint_talkers_tcpip.c
* endpoint_talkers_tcpip 2003 Ronnie Sahlberg
*
- * $Id: endpoint_talkers_tcpip.c,v 1.15 2003/09/04 23:11:03 sahlberg Exp $
+ * $Id: endpoint_talkers_tcpip.c,v 1.16 2003/09/04 23:37:45 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -65,8 +65,8 @@ gtk_tcpip_talkers_init(char *optarg)
{
char *filter=NULL;
- if(!strncmp(optarg,"talkers,tcp,",12)){
- filter=optarg+12;
+ if(!strncmp(optarg,"conv,tcp,",9)){
+ filter=optarg+9;
} else {
filter=NULL;
}
@@ -79,14 +79,14 @@ gtk_tcpip_talkers_init(char *optarg)
static void
gtk_tcpip_endpoints_cb(GtkWidget *w _U_, gpointer d _U_)
{
- gtk_tcpip_talkers_init("talkers,tcp");
+ gtk_tcpip_talkers_init("conv,tcp");
}
void
register_tap_menu_tcpip_talkers(void)
{
- register_tap_menu_item("Endpoint Talkers/TCP (IPv4 IPv6)", gtk_tcpip_endpoints_cb);
+ register_tap_menu_item("Conversation List/TCP (IPv4 IPv6)", gtk_tcpip_endpoints_cb);
}
@@ -95,6 +95,6 @@ register_tap_menu_tcpip_talkers(void)
void
register_tap_listener_tcpip_talkers(void)
{
- register_ethereal_tap("talkers,tcp", gtk_tcpip_talkers_init);
+ register_ethereal_tap("conv,tcp", gtk_tcpip_talkers_init);
}