aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/hostlist_table.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-02-23 22:48:52 +0000
committerGuy Harris <guy@alum.mit.edu>2004-02-23 22:48:52 +0000
commit6064ef84c20c8793f2097a5d262c7d1c1aa4a800 (patch)
treea215667aa765deb015fc5b3faa6f94a2f92309fb /gtk/hostlist_table.c
parent5de3a44126731eb7686eca522d99a26d1fedce2f (diff)
Add a "force" argument to "filter_packets()" and
"main_filter_packets()", to force the filtering to be done even if the filter is the same as the current one; this is necessary in order to make sure "Follow TCP Stream" gets the packets processed even if you're filtering the stream that's currently filtered in. svn path=/trunk/; revision=10209
Diffstat (limited to 'gtk/hostlist_table.c')
-rw-r--r--gtk/hostlist_table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/hostlist_table.c b/gtk/hostlist_table.c
index b1fd7791fa..6f9b61698f 100644
--- a/gtk/hostlist_table.c
+++ b/gtk/hostlist_table.c
@@ -2,7 +2,7 @@
* modified from endpoint_talkers_table.c 2003 Ronnie Sahlberg
* Helper routines common to all host list taps.
*
- * $Id: hostlist_table.c,v 1.3 2004/02/23 05:35:46 guy Exp $
+ * $Id: hostlist_table.c,v 1.4 2004/02/23 22:48:51 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -324,7 +324,7 @@ hostlist_select_filter_cb(GtkWidget *widget _U_, gpointer callback_data, guint c
case 0:
/* match */
gtk_entry_set_text(GTK_ENTRY(main_display_filter_widget), str);
- main_filter_packets(&cfile, str);
+ main_filter_packets(&cfile, str, FALSE);
gdk_window_raise(top_level->window);
break;
case 1: