diff options
author | Richard Levitte <levitte@openssl.org> | 2015-05-14 16:56:48 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2015-05-14 17:21:40 +0200 |
commit | b39fc560612984e65ec30d7f37487303bf514fb3 (patch) | |
tree | 10f33004ee5a296367ea155344287b9d29c05616 /crypto/ocsp | |
parent | Adjust unixly mk1mf after introduction of tkey (diff) | |
download | openssl-b39fc560612984e65ec30d7f37487303bf514fb3.tar.xz openssl-b39fc560612984e65ec30d7f37487303bf514fb3.zip |
Identify and move common internal libcrypto header files
There are header files in crypto/ that are used by a number of crypto/
submodules. Move those to crypto/include/internal and adapt the
affected source code and Makefiles.
The header files that got moved are:
crypto/cryptolib.h
crypto/md32_common.h
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/ocsp')
-rw-r--r-- | crypto/ocsp/ocsp_cl.c | 2 | ||||
-rw-r--r-- | crypto/ocsp/ocsp_ext.c | 2 | ||||
-rw-r--r-- | crypto/ocsp/ocsp_lib.c | 2 | ||||
-rw-r--r-- | crypto/ocsp/ocsp_srv.c | 2 | ||||
-rw-r--r-- | crypto/ocsp/v3_ocsp.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/crypto/ocsp/ocsp_cl.c b/crypto/ocsp/ocsp_cl.c index b6ec19a565..ef8ff30031 100644 --- a/crypto/ocsp/ocsp_cl.c +++ b/crypto/ocsp/ocsp_cl.c @@ -66,7 +66,7 @@ #include <stdio.h> #include <time.h> -#include <cryptlib.h> +#include "internal/cryptlib.h" #include <openssl/objects.h> #include <openssl/rand.h> #include <openssl/x509.h> diff --git a/crypto/ocsp/ocsp_ext.c b/crypto/ocsp/ocsp_ext.c index 63a8332c15..95c61e66e5 100644 --- a/crypto/ocsp/ocsp_ext.c +++ b/crypto/ocsp/ocsp_ext.c @@ -65,7 +65,7 @@ */ #include <stdio.h> -#include <cryptlib.h> +#include "internal/cryptlib.h" #include <openssl/objects.h> #include <openssl/x509.h> #include <openssl/ocsp.h> diff --git a/crypto/ocsp/ocsp_lib.c b/crypto/ocsp/ocsp_lib.c index b0e7122796..aa0723c9ab 100644 --- a/crypto/ocsp/ocsp_lib.c +++ b/crypto/ocsp/ocsp_lib.c @@ -65,7 +65,7 @@ */ #include <stdio.h> -#include <cryptlib.h> +#include "internal/cryptlib.h" #include <openssl/objects.h> #include <openssl/rand.h> #include <openssl/x509.h> diff --git a/crypto/ocsp/ocsp_srv.c b/crypto/ocsp/ocsp_srv.c index 3b71dd7e85..740b11c5a0 100644 --- a/crypto/ocsp/ocsp_srv.c +++ b/crypto/ocsp/ocsp_srv.c @@ -58,7 +58,7 @@ */ #include <stdio.h> -#include <cryptlib.h> +#include "internal/cryptlib.h" #include <openssl/objects.h> #include <openssl/rand.h> #include <openssl/x509.h> diff --git a/crypto/ocsp/v3_ocsp.c b/crypto/ocsp/v3_ocsp.c index 7e502d7962..30ed7d5d31 100644 --- a/crypto/ocsp/v3_ocsp.c +++ b/crypto/ocsp/v3_ocsp.c @@ -58,7 +58,7 @@ */ # include <stdio.h> -# include "cryptlib.h" +# include "internal/cryptlib.h" # include <openssl/conf.h> # include <openssl/asn1.h> # include <openssl/ocsp.h> |