diff options
author | Pauli <paul.dale@oracle.com> | 2017-09-28 23:27:04 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2017-09-28 23:38:56 +0200 |
commit | f32b0abe26285c6ba2ff258512c08e8f2fbcbdc9 (patch) | |
tree | 84f40de5e43cab5115b8aab7e8be689b32baec78 /crypto/x509 | |
parent | Use safestack.h exclusively internally. (diff) | |
download | openssl-f32b0abe26285c6ba2ff258512c08e8f2fbcbdc9.tar.xz openssl-f32b0abe26285c6ba2ff258512c08e8f2fbcbdc9.zip |
Remove unnecessary #include <openssl/lhash.h> directives.
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4431)
Diffstat (limited to 'crypto/x509')
-rw-r--r-- | crypto/x509/by_dir.c | 2 | ||||
-rw-r--r-- | crypto/x509/by_file.c | 1 | ||||
-rw-r--r-- | crypto/x509/x509_lu.c | 1 | ||||
-rw-r--r-- | crypto/x509/x509_obj.c | 3 | ||||
-rw-r--r-- | crypto/x509/x509_txt.c | 3 | ||||
-rw-r--r-- | crypto/x509/x509_vfy.c | 1 | ||||
-rw-r--r-- | crypto/x509/x509_vpm.c | 3 |
7 files changed, 3 insertions, 11 deletions
diff --git a/crypto/x509/by_dir.c b/crypto/x509/by_dir.c index b83a473017..03c3cde96b 100644 --- a/crypto/x509/by_dir.c +++ b/crypto/x509/by_dir.c @@ -18,8 +18,6 @@ # include <sys/stat.h> #endif - -#include <openssl/lhash.h> #include <openssl/x509.h> #include "internal/x509_int.h" #include "x509_lcl.h" diff --git a/crypto/x509/by_file.c b/crypto/x509/by_file.c index 457118ed63..1dbe351adc 100644 --- a/crypto/x509/by_file.c +++ b/crypto/x509/by_file.c @@ -12,7 +12,6 @@ #include <errno.h> #include "internal/cryptlib.h" -#include <openssl/lhash.h> #include <openssl/buffer.h> #include <openssl/x509.h> #include <openssl/pem.h> diff --git a/crypto/x509/x509_lu.c b/crypto/x509/x509_lu.c index f45b06112d..b8845f1e64 100644 --- a/crypto/x509/x509_lu.c +++ b/crypto/x509/x509_lu.c @@ -10,7 +10,6 @@ #include <stdio.h> #include "internal/cryptlib.h" #include "internal/refcount.h" -#include <openssl/lhash.h> #include <openssl/x509.h> #include "internal/x509_int.h" #include <openssl/x509v3.h> diff --git a/crypto/x509/x509_obj.c b/crypto/x509/x509_obj.c index 55dc778bba..b6d60be6fd 100644 --- a/crypto/x509/x509_obj.c +++ b/crypto/x509/x509_obj.c @@ -1,5 +1,5 @@ /* - * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -9,7 +9,6 @@ #include <stdio.h> #include "internal/cryptlib.h" -#include <openssl/lhash.h> #include <openssl/objects.h> #include <openssl/x509.h> #include <openssl/buffer.h> diff --git a/crypto/x509/x509_txt.c b/crypto/x509/x509_txt.c index a460bf5474..157db38f8c 100644 --- a/crypto/x509/x509_txt.c +++ b/crypto/x509/x509_txt.c @@ -1,5 +1,5 @@ /* - * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -12,7 +12,6 @@ #include <errno.h> #include "internal/cryptlib.h" -#include <openssl/lhash.h> #include <openssl/buffer.h> #include <openssl/evp.h> #include <openssl/asn1.h> diff --git a/crypto/x509/x509_vfy.c b/crypto/x509/x509_vfy.c index d4a5f3a6ba..9ebda1bb1f 100644 --- a/crypto/x509/x509_vfy.c +++ b/crypto/x509/x509_vfy.c @@ -15,7 +15,6 @@ #include "internal/ctype.h" #include "internal/cryptlib.h" #include <openssl/crypto.h> -#include <openssl/lhash.h> #include <openssl/buffer.h> #include <openssl/evp.h> #include <openssl/asn1.h> diff --git a/crypto/x509/x509_vpm.c b/crypto/x509/x509_vpm.c index 95f1c5b4c8..033ec423bc 100644 --- a/crypto/x509/x509_vpm.c +++ b/crypto/x509/x509_vpm.c @@ -1,5 +1,5 @@ /* - * Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2004-2017 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -11,7 +11,6 @@ #include "internal/cryptlib.h" #include <openssl/crypto.h> -#include <openssl/lhash.h> #include <openssl/buffer.h> #include <openssl/x509.h> #include <openssl/x509v3.h> |