summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2015-08-16 07:35:24 +0100
committerAnders Broman <a.broman58@gmail.com>2015-08-17 08:59:48 +0000
commit9eef6742a63757b4d3261c7351e218f371034dc2 (patch)
treee3d33fca62249559f80c7c5b598e6a0d26182ebf
parent56dbe5198acfb6ceeed31169e75543ca1f3bbc20 (diff)
downloadwireshark-9eef6742a63757b4d3261c7351e218f371034dc2.tar.gz
Fix IP Destinations stats tree
Reviewed-on: https://code.wireshark.org/review/10053 Reviewed-by: Michael Mann <mmann78@netscape.net> Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Hadriel Kaplan <hadrielk@yahoo.com> (cherry picked from commit 3755bc64016ca1cde8e6ba493040e2d6b5c5632c) Conflicts: plugins/stats_tree/pinfo_stats_tree.c Change-Id: I875ecb05e0919e81e6d8d1d00f802c8d5df5b214 Reviewed-on: https://code.wireshark.org/review/10066 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--plugins/stats_tree/pinfo_stats_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/stats_tree/pinfo_stats_tree.c b/plugins/stats_tree/pinfo_stats_tree.c
index f52be1d91a..e48b89ff82 100644
--- a/plugins/stats_tree/pinfo_stats_tree.c
+++ b/plugins/stats_tree/pinfo_stats_tree.c
@@ -215,7 +215,7 @@ static int dsts_stats_tree_packet(stats_tree* st, packet_info* pinfo, epan_disse
tick_stat_node(st, st_str_dsts, 0, FALSE);
- ip_dst_node = tick_stat_node(st, ep_address_to_str(&pinfo->net_src), st_node_dsts, TRUE);
+ ip_dst_node = tick_stat_node(st, ep_address_to_str(&pinfo->net_dst), st_node_dsts, TRUE);
protocol_node = tick_stat_node(st,port_type_to_str(pinfo->ptype),ip_dst_node,TRUE);