summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2021-06-24 11:13:51 +0200
committerDr. David von Oheimb <David.von.Oheimb@siemens.com>2021-11-17 15:48:37 +0100
commitaf16097febcd4fa31cd5fcd05ad09cf8b53659ea (patch)
tree332aec1155c2187e89dbf5ed8bdb4de8ba42244c /apps
parent747adb6a0134e3b707fbc47d0f0c52d6ff9c4223 (diff)
Move more general parts of internal/cryptlib.h to new internal/common.h
Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15847)
Diffstat (limited to 'apps')
-rw-r--r--apps/fipsinstall.c1
-rw-r--r--apps/include/apps.h2
-rw-r--r--apps/openssl.c2
3 files changed, 2 insertions, 3 deletions
diff --git a/apps/fipsinstall.c b/apps/fipsinstall.c
index 8152f3956b..363631112e 100644
--- a/apps/fipsinstall.c
+++ b/apps/fipsinstall.c
@@ -7,7 +7,6 @@
* https://www.openssl.org/source/license.html
*/
-#include "internal/cryptlib.h"
#include <openssl/evp.h>
#include <openssl/err.h>
#include <openssl/provider.h>
diff --git a/apps/include/apps.h b/apps/include/apps.h
index 7d9b64a3c6..f95238ae1b 100644
--- a/apps/include/apps.h
+++ b/apps/include/apps.h
@@ -11,7 +11,7 @@
# define OSSL_APPS_H
# include "e_os.h" /* struct timeval for DTLS */
-# include "internal/cryptlib.h" /* for HAS_PREFIX */
+# include "internal/common.h" /* for HAS_PREFIX */
# include "internal/nelem.h"
# include "internal/sockets.h" /* for openssl_fdset() */
# include <assert.h>
diff --git a/apps/openssl.c b/apps/openssl.c
index f347d64417..d61acbbc54 100644
--- a/apps/openssl.c
+++ b/apps/openssl.c
@@ -9,7 +9,7 @@
#include <stdio.h>
#include <stdlib.h>
-#include "internal/cryptlib.h"
+#include "internal/common.h"
#include <openssl/bio.h>
#include <openssl/crypto.h>
#include <openssl/trace.h>