handshake_write_seq is an unsigned short, so treat it like one
This commit is contained in:
parent
b0fb889c29
commit
d28b7799dd
1 changed files with 1 additions and 1 deletions
|
@ -1075,7 +1075,7 @@ int dtls1_send_certificate_request(SSL *s)
|
||||||
d=(unsigned char *)buf->data;
|
d=(unsigned char *)buf->data;
|
||||||
*(d++)=SSL3_MT_CERTIFICATE_REQUEST;
|
*(d++)=SSL3_MT_CERTIFICATE_REQUEST;
|
||||||
l2n3(n,d);
|
l2n3(n,d);
|
||||||
l2n(s->d1->handshake_write_seq,d);
|
s2n(s->d1->handshake_write_seq,d);
|
||||||
s->d1->handshake_write_seq++;
|
s->d1->handshake_write_seq++;
|
||||||
|
|
||||||
/* we should now have things packed up, so lets send
|
/* we should now have things packed up, so lets send
|
||||||
|
|
Loading…
Reference in a new issue