aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/flow_graph.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/flow_graph.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/flow_graph.c')
-rw-r--r--gtk/flow_graph.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/flow_graph.c b/gtk/flow_graph.c
index 8b4b15943e..ef7f5a902e 100644
--- a/gtk/flow_graph.c
+++ b/gtk/flow_graph.c
@@ -335,7 +335,7 @@ flow_graph_on_ok (GtkButton *button _U_,
remove_tap_listener_flow_graph();
}
- /* Scan for displayed packets (redissect all packets) */
+ /* Scan for displayed packets (retap all packets) */
if (type_of_flow == GENERAL){
/* Register the tap listener */
@@ -351,7 +351,7 @@ flow_graph_on_ok (GtkButton *button _U_,
have_frame_tap_listener=TRUE;
}
- cf_redissect_packets(&cfile);
+ cf_retap_packets(&cfile, TRUE);
}
else if (type_of_flow == TCP){
/* Register the tap listener */
@@ -367,7 +367,7 @@ flow_graph_on_ok (GtkButton *button _U_,
have_tcp_tap_listener=TRUE;
}
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
if (graph_analysis_data->dlg.window != NULL){ /* if we still have a window */