Avoid warning on Win32.

This commit is contained in:
Dr. Stephen Henson 2005-10-08 17:31:18 +00:00
parent 566dda07ba
commit c1de1a190d

View File

@ -754,7 +754,7 @@ struct ssl_ctx_st
* actual record size can be more than this due to * actual record size can be more than this due to
* padding and MAC overheads. * padding and MAC overheads.
*/ */
int max_send_fragment; unsigned int max_send_fragment;
}; };
#define SSL_SESS_CACHE_OFF 0x0000 #define SSL_SESS_CACHE_OFF 0x0000
@ -976,7 +976,7 @@ struct ssl_st
int first_packet; int first_packet;
int client_version; /* what was passed, used for int client_version; /* what was passed, used for
* SSLv3/TLS rollback check */ * SSLv3/TLS rollback check */
int max_send_fragment; unsigned int max_send_fragment;
}; };
#ifdef __cplusplus #ifdef __cplusplus