summaryrefslogtreecommitdiffstats
path: root/ssl/d1_pkt.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2010-04-13 11:10:07 +0000
committerRichard Levitte <levitte@openssl.org>2010-04-13 11:10:07 +0000
commit0a4fe6c8db47fd8390c40a7bd72c1dac2c0001d3 (patch)
tree26570432e616e74d2f37dec0dce74c433de06848 /ssl/d1_pkt.c
parent7bba401d5dd63d0f280965743ec837604d5179eb (diff)
Undo the previous change, it was incorrect in this branch.
Diffstat (limited to 'ssl/d1_pkt.c')
-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 3d5b32e978..20d24b6fd8 100644
--- a/ssl/d1_pkt.c
+++ b/ssl/d1_pkt.c
@@ -673,7 +673,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;
@@ -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), &rr->seq_num);
+ dtls1_buffer_record(s, &(s->d1->buffered_app_data), rr->seq_num);
rr->length = 0;
goto start;
}