summaryrefslogtreecommitdiff
path: root/ui/qt/sctp_graph_arwnd_dialog.cpp
diff options
context:
space:
mode:
authorruengeler <ruengeler@wireshark.org>2015-10-01 13:36:24 +0200
committerMichael Tüxen <tuexen@wireshark.org>2015-10-01 11:47:04 +0000
commit4e9361dc88eefef27d031e29e2f8ca9891cc03eb (patch)
treeb91d5a7928a95bab73ceb3c2653ae43cfa0ba3c5 /ui/qt/sctp_graph_arwnd_dialog.cpp
parent778feded84ad7c6677865ea0890aa6aa06fac61b (diff)
downloadwireshark-4e9361dc88eefef27d031e29e2f8ca9891cc03eb.tar.gz
SCTP: Add I_DATA support
Change-Id: Ib8566b7d94fdafdb9735b356d129f378c94af3cf Reviewed-on: https://code.wireshark.org/review/10716 Reviewed-by: Michael Tüxen <tuexen@wireshark.org> Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
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);