use urandom instead of random

This commit is contained in:
Duncan Laurie 2004-08-13 21:29:40 +00:00
parent f059085532
commit d08d147528

View File

@ -197,7 +197,7 @@ ipmi_req_clear_entries(void)
static int
get_random(void *data, unsigned int len)
{
int fd = open("/dev/random", O_RDONLY);
int fd = open("/dev/urandom", O_RDONLY);
int rv;
if (fd == -1)