error codes are longs, not ints

This commit is contained in:
Bodo Möller 2001-03-15 11:30:55 +00:00
parent 5d8094143e
commit 8562801137

View File

@ -482,12 +482,12 @@ static int ssleay_rand_bytes(unsigned char *buf, int num)
unpredictable */ unpredictable */
static int ssleay_rand_pseudo_bytes(unsigned char *buf, int num) static int ssleay_rand_pseudo_bytes(unsigned char *buf, int num)
{ {
int ret, err; int ret;
ret = RAND_bytes(buf, num); ret = RAND_bytes(buf, num);
if (ret == 0) if (ret == 0)
{ {
err = ERR_peek_error(); long err = ERR_peek_error();
if (ERR_GET_LIB(err) == ERR_LIB_RAND && if (ERR_GET_LIB(err) == ERR_LIB_RAND &&
ERR_GET_REASON(err) == RAND_R_PRNG_NOT_SEEDED) ERR_GET_REASON(err) == RAND_R_PRNG_NOT_SEEDED)
(void)ERR_get_error(); (void)ERR_get_error();