From 9521c08d7893b72d7b5b196cf322203a433ff7c7 Mon Sep 17 00:00:00 2001 From: Christian Mauderer Date: Thu, 9 Nov 2017 14:35:13 +0100 Subject: [PATCH] wpa_supplicant: Use arc4random instead of getentropy. --- freebsd/contrib/wpa/src/utils/os_unix.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/freebsd/contrib/wpa/src/utils/os_unix.c b/freebsd/contrib/wpa/src/utils/os_unix.c index 7f101d71..1c960e51 100644 --- a/freebsd/contrib/wpa/src/utils/os_unix.c +++ b/freebsd/contrib/wpa/src/utils/os_unix.c @@ -26,7 +26,7 @@ #endif /* __MACH__ */ #ifdef __rtems__ -#include +#include #endif /* __rtems__ */ @@ -288,7 +288,8 @@ int os_get_random(unsigned char *buf, size_t len) return -1; #ifdef __rtems__ - return getentropy(buf, len); + arc4random_buf(buf, len); + return 0; #else /* __rtems__ */ f = fopen("/dev/urandom", "rb"); if (f == NULL) {