summaryrefslogtreecommitdiff
path: root/ui/qt/follow_stream_dialog.cpp
diff options
context:
space:
mode:
authorDavid Morsberger <dave@morsberger.com>2016-01-03 19:55:05 -0500
committerMichael Mann <mmann78@netscape.net>2016-01-04 01:26:59 +0000
commitfc13bf5361105188509b2bbc848be5a3f8214a56 (patch)
tree7710c67c9c43d0e084495de96d274d350197f37c /ui/qt/follow_stream_dialog.cpp
parentc6dee1548992ced230b997b13890f2a1a7900331 (diff)
downloadwireshark-fc13bf5361105188509b2bbc848be5a3f8214a56.tar.gz
Bugfix Follow HTTP byte stats
Change-Id: I23806012fc4f7f3a791e380de0c364b5825f8951 Reviewed-on: https://code.wireshark.org/review/13037 Reviewed-by: David Morsberger <dave@morsberger.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'ui/qt/follow_stream_dialog.cpp')
-rw-r--r--ui/qt/follow_stream_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/follow_stream_dialog.cpp b/ui/qt/follow_stream_dialog.cpp
index 91933c5893..175f8c04e7 100644
--- a/ui/qt/follow_stream_dialog.cpp
+++ b/ui/qt/follow_stream_dialog.cpp
@@ -1365,7 +1365,7 @@ bool FollowStreamDialog::follow(QString previous_filter, bool use_stream_index)
case FOLLOW_HTTP:
both_directions_string = QString("Entire conversation (%1)")
.arg(gchar_free_to_qstring(format_size(
- stats.bytes_written[0] + stats.bytes_written[1],
+ follow_info_.bytes_written[0] + follow_info_.bytes_written[1],
format_size_unit_bytes|format_size_prefix_si)));
setWindowSubtitle(tr("Follow HTTP Stream (%1)").arg(follow_filter));
break;