Commit 8918a954 authored by Richard Levitte's avatar Richard Levitte
Browse files

Fix: dummy definition of rand_hw_seed() should also return int

parent b8a7bd83
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -644,9 +644,9 @@ void rand_hw_xor(unsigned char *buf, size_t num)


#else
#else


static void rand_hw_seed(EVP_MD_CTX *ctx)
static int rand_hw_seed(EVP_MD_CTX *ctx)
{
{
    return;
    return 1;
}
}


void rand_hw_xor(unsigned char *buf, size_t num)
void rand_hw_xor(unsigned char *buf, size_t num)