diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-08-26 01:46:23 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-08-26 01:46:23 +0000 |
commit | f91af72c55a8e1b97125de4b1406dc932f577cd6 (patch) | |
tree | bc063ba4366a53926a60519b1b8808cb39de25c2 /gtk/endpoint_talkers_ip.c | |
parent | dcf024f7599022134626ae018b1dadc14ae02b3b (diff) | |
download | wireshark-f91af72c55a8e1b97125de4b1406dc932f577cd6.tar.gz wireshark-f91af72c55a8e1b97125de4b1406dc932f577cd6.tar.bz2 wireshark-f91af72c55a8e1b97125de4b1406dc932f577cd6.zip |
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_ip.c')
-rw-r--r-- | gtk/endpoint_talkers_ip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/endpoint_talkers_ip.c b/gtk/endpoint_talkers_ip.c index 85b6ed7c54..c56e63a179 100644 --- a/gtk/endpoint_talkers_ip.c +++ b/gtk/endpoint_talkers_ip.c @@ -1,7 +1,7 @@ /* endpoint_talkers_ip.c * endpoint_talkers_ip 2003 Ronnie Sahlberg * - * $Id: endpoint_talkers_ip.c,v 1.5 2003/08/25 11:06:31 sahlberg Exp $ + * $Id: endpoint_talkers_ip.c,v 1.6 2003/08/26 01:46:22 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -138,7 +138,7 @@ gtk_ip_talkers_init(char *optarg) /* We must display TOP LEVEL Widget before calling init_ett_table() */ gtk_widget_show(ip_talkers->win); - init_ett_table(&ip_talkers->talkers, vbox, address_to_str, NULL); + init_ett_table(&ip_talkers->talkers, vbox, NULL); error_string=register_tap_listener("ip", ip_talkers, filter, ip_talkers_reset, ip_talkers_packet, ip_talkers_draw); if(error_string){ |