libbsd: Branch 'master'

Guillem Jover guillem at kemper.freedesktop.org
Tue Dec 1 19:05:47 PST 2015


 src/getentropy.c |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit d2f59a23d5e1d8bc440c061cac2a0d6fc133a79e
Author: Guillem Jover <guillem at hadrons.org>
Date:   Wed Dec 2 04:00:58 2015 +0100

    Fix getentropy implementation to use the correct system hooks
    
    Include getentropy_<SYSTEM>.c instead of arc4random_<SYSTEM>.c.

diff --git a/src/getentropy.c b/src/getentropy.c
index be19d7e..24b58b3 100644
--- a/src/getentropy.c
+++ b/src/getentropy.c
@@ -27,17 +27,17 @@
 #if defined(__linux__)
 #include "getentropy_linux.c"
 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
-#include "arc4random_bsd.c"
+#include "getentropy_bsd.c"
 #elif defined(__NetBSD__)
-#include "arc4random_bsd.c"
+#include "getentropy_bsd.c"
 #elif defined(__sun)
-#include "arc4random_solaris.c"
+#include "getentropy_solaris.c"
 #elif defined(__APPLE__)
-#include "arc4random_osx.c"
+#include "getentropy_osx.c"
 #elif defined(_AIX)
-#include "arc4random_aix.c"
+#include "getentropy_aix.c"
 #elif defined(__hpux)
-#include "arc4random_hpux.c"
+#include "getentropy_hpux.c"
 #else
 #error "No getentropy hooks defined for this platform."
 #endif


More information about the libbsd mailing list