aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/conversations_table.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-09-14 08:59:41 +0000
committerGuy Harris <guy@alum.mit.edu>2005-09-14 08:59:41 +0000
commitf34e1a97c625ff92641fd9a20621365f5fd27ac7 (patch)
tree2f1f53f81eb533ed6171a052b0b2b52faaea0e1b /gtk/conversations_table.c
parenta7e184cb593d57f9a92f28b8977de79ced85f517 (diff)
Have cf_retap_packets() take an argument that indicates whether to
generate columns; use cf_retap_packets instead of cf_redissect_packets() when running taps (the general flow graph stat uses the Info column). svn path=/trunk/; revision=15793
Diffstat (limited to 'gtk/conversations_table.c')
-rw-r--r--gtk/conversations_table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/conversations_table.c b/gtk/conversations_table.c
index e6f283c2f4..d74f104854 100644
--- a/gtk/conversations_table.c
+++ b/gtk/conversations_table.c
@@ -1327,7 +1327,7 @@ init_conversation_table(gboolean hide_ports, const char *table_name, const char
gtk_widget_show_all(conversations->win);
window_present(conversations->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
/* Keep clist frozen to cause modifications to the clist (inserts, appends, others that are extremely slow
@@ -1515,7 +1515,7 @@ init_conversation_notebook_cb(GtkWidget *w _U_, gpointer d _U_)
gtk_widget_show_all(win);
window_present(win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
/* after retapping, redraw table */
for (page=1; page<=GPOINTER_TO_INT(pages[0]); page++) {