From 47e6a60e42c84a18b832b9c48e176736d18204a8 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Tue, 6 Apr 2010 12:40:19 +0000 Subject: [PATCH] PR: 2219 Submitted By: Robin Seggelmann Fixes for DTLS buffering bug. --- ssl/d1_pkt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.34.1