summaryrefslogtreecommitdiffstats
path: root/ssl/d1_pkt.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-04-06 12:40:10 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-04-06 12:40:10 +0000
commit073775cbbbd7628b8bdee682a865c43e7a88e462 (patch)
treeca00cbf16dc5b3c889bfe5c52c232dcfa23ed005 /ssl/d1_pkt.c
parente995d5044ea62c3dcd7a3566068ade1754f47ebd (diff)
PR: 2219
Submitted By: Robin Seggelmann <seggelmann@fh-muenster.de> Fixes for DTLS buffering bug.
Diffstat (limited to 'ssl/d1_pkt.c')
-rw-r--r--ssl/d1_pkt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/d1_pkt.c b/ssl/d1_pkt.c
index c9757e1d63..54235f283a 100644
--- a/ssl/d1_pkt.c
+++ b/ssl/d1_pkt.c
@@ -809,7 +809,7 @@ start:
* buffer the application data for later processing rather
* than dropping the connection.
*/
- dtls1_buffer_record(s, &(s->d1->buffered_app_data), 0);
+ dtls1_buffer_record(s, &(s->d1->buffered_app_data), rr->seq_num);
rr->length = 0;
goto start;
}