提交 02c5ddf9 编写于 作者: R Richard Levitte

From 0.9.8-stable:

handshake_write_seq is an unsigned short, so treat it like one
上级 1aaeaf8a
......@@ -1075,7 +1075,7 @@ int dtls1_send_certificate_request(SSL *s)
d=(unsigned char *)buf->data;
*(d++)=SSL3_MT_CERTIFICATE_REQUEST;
l2n3(n,d);
l2n(s->d1->handshake_write_seq,d);
s2n(s->d1->handshake_write_seq,d);
s->d1->handshake_write_seq++;
/* we should now have things packed up, so lets send
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册