From c6ab1bb54a56b167d7fd43bf688499635a9f2e56 Mon Sep 17 00:00:00 2001 From: Pauli Date: Fri, 30 Aug 2019 07:38:58 +1000 Subject: Don't include the DEVRANDOM being seeded logic on Android. It lacks exposure of the `shm*` functions and should prefer the GETRANDOM source. Reviewed-by: Matthias St. Pierre Reviewed-by: Bernd Edlinger (Merged from https://github.com/openssl/openssl/pull/9735) (cherry picked from commit 280cc0180862ae6664b88d5ea12cb5f599000d36) --- e_os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'e_os.h') diff --git a/e_os.h b/e_os.h index fe4c0912bc..858bc40cb1 100644 --- a/e_os.h +++ b/e_os.h @@ -28,7 +28,7 @@ * default, we will try to read at least one of these files */ # define DEVRANDOM "/dev/urandom", "/dev/random", "/dev/hwrng", "/dev/srandom" -# ifdef __linux +# if defined(__linux) && !defined(__ANDROID__) # ifndef DEVRANDOM_WAIT # define DEVRANDOM_WAIT "/dev/random" # endif -- cgit v1.2.3