From: Dr. Stephen Henson Date: Tue, 6 Apr 2010 12:39:57 +0000 (+0000) Subject: PR: 2219 X-Git-Tag: OpenSSL_0_9_8o~30 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=56e930eb03c2d266cd8d27f42fc782c08bf95446;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 ca2d73f02e..4ecabc8f42 100644 --- a/ssl/d1_pkt.c +++ b/ssl/d1_pkt.c @@ -766,7 +766,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; }