aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/endpoint_talkers_tcpip.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-08-26 01:46:23 +0000
committerGuy Harris <guy@alum.mit.edu>2003-08-26 01:46:23 +0000
commitf91af72c55a8e1b97125de4b1406dc932f577cd6 (patch)
treebc063ba4366a53926a60519b1b8808cb39de25c2 /gtk/endpoint_talkers_tcpip.c
parentdcf024f7599022134626ae018b1dadc14ae02b3b (diff)
All endpoint talkers table taps use "address_to_str()" as the routine to
use to translate addresses to strings - wire that into "endpoint_talkers_table.c", don't pass the function as an argument to "init_ett_table()". svn path=/trunk/; revision=8263
Diffstat (limited to 'gtk/endpoint_talkers_tcpip.c')
-rw-r--r--gtk/endpoint_talkers_tcpip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/endpoint_talkers_tcpip.c b/gtk/endpoint_talkers_tcpip.c
index 90d810fd0d..a4c49eb7af 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.6 2003/08/25 11:06:31 sahlberg Exp $
+ * $Id: endpoint_talkers_tcpip.c,v 1.7 2003/08/26 01:46:23 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -155,7 +155,7 @@ gtk_tcpip_talkers_init(char *optarg)
/* We must display TOP LEVEL Widget before calling init_ett_table() */
gtk_widget_show(tcpip_talkers->win);
- init_ett_table(&tcpip_talkers->talkers, vbox, address_to_str, tcpip_port_to_str);
+ init_ett_table(&tcpip_talkers->talkers, vbox, tcpip_port_to_str);
error_string=register_tap_listener("tcp", tcpip_talkers, filter, tcpip_talkers_reset, tcpip_talkers_packet, tcpip_talkers_draw);
if(error_string){