ssluse.c: fix compiler warning: conversion to 'int' from 'size_t'

Reported by Tatsuhiro Tsujikawa

http://curl.haxx.se/mail/lib-2012-06/0371.html
This commit is contained in:
Yang Tse 2012-06-27 19:06:43 +02:00
Родитель e3014dcc01
Коммит 3bda1cef92
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2786,7 +2786,7 @@ void Curl_ossl_random(struct SessionHandle *data, unsigned char *entropy,
size_t length) size_t length)
{ {
Curl_ossl_seed(data); /* Initiate the seed if not already done */ Curl_ossl_seed(data); /* Initiate the seed if not already done */
RAND_bytes(entropy, length); RAND_bytes(entropy, curlx_uztosi(length));
} }
void Curl_ossl_md5sum(unsigned char *tmp, /* input */ void Curl_ossl_md5sum(unsigned char *tmp, /* input */