From: Taylor Yu Date: Mon, 7 May 2018 17:43:39 +0000 (-0500) Subject: Restore sys/random.h inclusion for getentropy() X-Git-Tag: tor-0.3.4.1-alpha~50^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9326abe16ac720346885e0ac555d6625233e198c;p=thirdparty%2Ftor.git Restore sys/random.h inclusion for getentropy() Code movement for the refactoring for ticket 24658 didn't copy the inclusion of sys/random.h, which is needed to get a prototype for getentropy() on macOS 10.12 Sierra. It also didn't copy the inclusion of sys/syscall.h, which might prevent the getrandom() syscall from being properly detected. Move these inclusions. Bug not in any released Tor. --- diff --git a/src/common/crypto.c b/src/common/crypto.c index e148878be0..052f31723b 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -60,12 +60,6 @@ ENABLE_GCC_WARNING(redundant-decls) #ifdef HAVE_UNISTD_H #include #endif -#ifdef HAVE_SYS_SYSCALL_H -#include -#endif -#ifdef HAVE_SYS_RANDOM_H -#include -#endif #include "torlog.h" #include "torint.h" diff --git a/src/common/crypto_rand.c b/src/common/crypto_rand.c index 5abf0b0968..df2e2f65d3 100644 --- a/src/common/crypto_rand.c +++ b/src/common/crypto_rand.c @@ -55,6 +55,12 @@ ENABLE_GCC_WARNING(redundant-decls) #ifdef HAVE_UNISTD_H #include #endif +#ifdef HAVE_SYS_SYSCALL_H +#include +#endif +#ifdef HAVE_SYS_RANDOM_H +#include +#endif /** * How many bytes of entropy we add at once.