summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Fox-Moore <ben.foxmoore@accelleran.com>2015-09-09 17:30:32 +0200
committerPascal Quantin <pascal.quantin@gmail.com>2015-09-09 20:04:31 +0000
commitb6be1c219729eeaf1929cd83ed899d555d645fbb (patch)
treecd1c94ae72e25cb5e4ea4428753d4a3e033f966f
parentecc62d8706ad4ed7768cde31dcd4476b4d2389a9 (diff)
downloadwireshark-b6be1c219729eeaf1929cd83ed899d555d645fbb.tar.gz
Fix Flow Graph never using Standard Addresses when requested
Bug: 10966 Change-Id: I5ccc78b8c39f623a4e157572d1caa228c9bb3713 Reviewed-on: https://code.wireshark.org/review/10450 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
-rw-r--r--ui/gtk/flow_graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/flow_graph.c b/ui/gtk/flow_graph.c
index ba06f5de39..5812137551 100644
--- a/ui/gtk/flow_graph.c
+++ b/ui/gtk/flow_graph.c
@@ -128,7 +128,7 @@ toggle_select_srcdst(GtkWidget *widget _U_, gpointer user_data _U_)
{
/* is the button now active? */
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(src_dst_rb))) {
- graph_analysis->any_addr = TRUE;
+ graph_analysis->any_addr = FALSE;
}
}