diff options
author | João Valverde <joao.valverde@tecnico.ulisboa.pt> | 2015-08-16 07:35:24 +0100 |
---|---|---|
committer | Hadriel Kaplan <hadrielk@yahoo.com> | 2015-08-16 17:09:49 +0000 |
commit | 3755bc64016ca1cde8e6ba493040e2d6b5c5632c (patch) | |
tree | 242872dee3455799b45d0be26b7f855cd9aeec94 /plugins/stats_tree | |
parent | c643cbfb8184a9d2faa888e7210185dab265c5c9 (diff) | |
download | wireshark-3755bc64016ca1cde8e6ba493040e2d6b5c5632c.tar.gz wireshark-3755bc64016ca1cde8e6ba493040e2d6b5c5632c.tar.bz2 wireshark-3755bc64016ca1cde8e6ba493040e2d6b5c5632c.zip |
Fix IP Destinations stats tree
Change-Id: I875ecb05e0919e81e6d8d1d00f802c8d5df5b214
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>
Diffstat (limited to 'plugins/stats_tree')
-rw-r--r-- | plugins/stats_tree/pinfo_stats_tree.c | 2 |
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 6308f20650..295c12c7f2 100644 --- a/plugins/stats_tree/pinfo_stats_tree.c +++ b/plugins/stats_tree/pinfo_stats_tree.c @@ -220,7 +220,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, address_to_str(pinfo->pool, &pinfo->net_src), st_node_dsts, TRUE); + ip_dst_node = tick_stat_node(st, address_to_str(pinfo->pool, &pinfo->net_dst), st_node_dsts, TRUE); protocol_node = tick_stat_node(st,port_type_to_str(pinfo->ptype),ip_dst_node,TRUE); |