summaryrefslogtreecommitdiff
path: root/ui/qt/sctp_graph_arwnd_dialog.cpp
diff options
context:
space:
mode:
authorruengeler <ruengeler@wireshark.org>2015-10-05 15:55:40 +0200
committerMichael Tüxen <tuexen@wireshark.org>2015-10-05 17:38:08 +0000
commitd52322efb3ab782871312950876803334ec018b9 (patch)
treea9049aa52e49c31f8d346ae2bcfe842694c2f776 /ui/qt/sctp_graph_arwnd_dialog.cpp
parenta24eeb931ea90b1fe63019c4e07065089e236351 (diff)
downloadwireshark-d52322efb3ab782871312950876803334ec018b9.tar.gz
SCTP I-DATA support
Change-Id: I459942b9e3287d500dda517568252d4cb56d3216 Reviewed-on: https://code.wireshark.org/review/10802 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Michael Tüxen <tuexen@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Tüxen <tuexen@wireshark.org>
Diffstat (limited to 'ui/qt/sctp_graph_arwnd_dialog.cpp')
-rw-r--r--ui/qt/sctp_graph_arwnd_dialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/qt/sctp_graph_arwnd_dialog.cpp b/ui/qt/sctp_graph_arwnd_dialog.cpp
index abaeb5832a..a36e5bdfbd 100644
--- a/ui/qt/sctp_graph_arwnd_dialog.cpp
+++ b/ui/qt/sctp_graph_arwnd_dialog.cpp
@@ -76,10 +76,10 @@ void SCTPGraphArwndDialog::drawArwndGraph()
if (direction == 1) {
listSACK = g_list_last(selected_assoc->sack1);
- startArwnd = selected_assoc->arwnd1;
+ startArwnd = selected_assoc->arwnd2;
} else {
listSACK = g_list_last(selected_assoc->sack2);
- startArwnd = selected_assoc->arwnd2;
+ startArwnd = selected_assoc->arwnd1;
}
while (listSACK) {
tsn = (tsn_t*) (listSACK->data);