From 63f483e10d4e04158be234ed431e9f03d707ad82 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Thu, 20 Jul 2017 10:20:47 -0400 Subject: [PATCH] Rename internal rand.h file Replacement fix for #3975 Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/3979) --- crypto/include/internal/{rand.h => rand_int.h} | 0 crypto/init.c | 2 +- crypto/rand/rand_lib.c | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename crypto/include/internal/{rand.h => rand_int.h} (100%) diff --git a/crypto/include/internal/rand.h b/crypto/include/internal/rand_int.h similarity index 100% rename from crypto/include/internal/rand.h rename to crypto/include/internal/rand_int.h diff --git a/crypto/init.c b/crypto/init.c index a2634d9653..b7c77154b4 100644 --- a/crypto/init.c +++ b/crypto/init.c @@ -9,7 +9,7 @@ #include #include -#include +#include #include #include #include diff --git a/crypto/rand/rand_lib.c b/crypto/rand/rand_lib.c index c021486c9f..3168d84b47 100644 --- a/crypto/rand/rand_lib.c +++ b/crypto/rand/rand_lib.c @@ -11,7 +11,7 @@ #include #include "internal/cryptlib.h" #include -#include "internal/rand.h" +#include "internal/rand_int.h" #include #include "internal/thread_once.h" #include "rand_lcl.h" -- 2.25.1