Fix some signed/unsigned warnings.

This commit is contained in:
Geoff Thorpe
2005-07-22 03:36:30 +00:00
parent 17a2994dbd
commit 20a90e3a76
3 changed files with 9 additions and 5 deletions

View File

@@ -677,7 +677,8 @@ int dtls1_send_server_hello(SSL *s)
{
unsigned char *buf;
unsigned char *p,*d;
int i,sl;
int i;
unsigned int sl;
unsigned long l,Time;
if (s->state == SSL3_ST_SW_SRVR_HELLO_A)