typecast the unsigned long to plain long to prevent compiler warnings

This commit is contained in:
Daniel Stenberg 2004-05-06 07:24:47 +00:00
parent 9f660862ec
commit 3fc831f9eb

View File

@ -47,7 +47,7 @@ static void getssl_version(char *ptr, long *num)
unsigned long ssleay_value;
sub[1]='\0';
ssleay_value=SSLeay();
*num = ssleay_value;
*num = (long)ssleay_value;
if(ssleay_value < 0x906000) {
ssleay_value=SSLEAY_VERSION_NUMBER;
sub[0]='\0';