summaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2010-04-13 08:42:01 +0000
committerRichard Levitte <levitte@openssl.org>2010-04-13 08:42:01 +0000
commit0c8c8eab580bb05c636cb9671093c53e9027d225 (patch)
treed6a5b9cf7473c3458c09f888eaee3590512e64b8 /ssl
parentbc06baca76534abc2048a3ac4d109b144da4b706 (diff)
downloadopenssl-new-0c8c8eab580bb05c636cb9671093c53e9027d225.tar.gz
Third argument to dtls1_buffer_record is by reference
Diffstat (limited to 'ssl')
-rw-r--r--ssl/d1_pkt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/d1_pkt.c b/ssl/d1_pkt.c
index 0326535e8d..57109c3bae 100644
--- a/ssl/d1_pkt.c
+++ b/ssl/d1_pkt.c
@@ -631,7 +631,7 @@ again:
{
if (SSL_in_init(s) || s->in_handshake)
{
- dtls1_buffer_record(s, &(s->d1->unprocessed_rcds), rr->seq_num);
+ dtls1_buffer_record(s, &(s->d1->unprocessed_rcds), &rr->seq_num);
}
rr->length = 0;
s->packet_length = 0;
@@ -767,7 +767,7 @@ start:
* buffer the application data for later processing rather
* than dropping the connection.
*/
- dtls1_buffer_record(s, &(s->d1->buffered_app_data), rr->seq_num);
+ dtls1_buffer_record(s, &(s->d1->buffered_app_data), &rr->seq_num);
rr->length = 0;
goto start;
}