From: Dr. Stephen Henson Date: Tue, 6 Apr 2010 12:40:19 +0000 (+0000) Subject: PR: 2219 X-Git-Tag: OpenSSL-fips-2_0-rc1~1153 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=47e6a60e42c84a18b832b9c48e176736d18204a8;p=oweals%2Fopenssl.git PR: 2219 Submitted By: Robin Seggelmann Fixes for DTLS buffering bug. --- 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; }