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:06:01 +0000
commit8696aa9efccdd48b3b8b6cd482f3447ad9c4ea83 (patch)
treebefbc7dfe626bd45e711346957bddea0a978c2c3
parentdecbe9409f6881e3d029b4f88c3c450e5c5bc7be (diff)
downloadwireshark-8696aa9efccdd48b3b8b6cd482f3447ad9c4ea83.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> (cherry picked from commit b6be1c219729eeaf1929cd83ed899d555d645fbb) Reviewed-on: https://code.wireshark.org/review/10453
-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 53eeb1e5bf..1fde0ea622 100644
--- a/ui/gtk/flow_graph.c
+++ b/ui/gtk/flow_graph.c
@@ -139,7 +139,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;
}
}