diff options
author | Rich Salz <rsalz@akamai.com> | 2021-05-25 21:06:22 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-05-27 01:56:41 +0200 |
commit | 6229815ab8f6e0a6e272c7a7094a061606cd0a90 (patch) | |
tree | 08d8dbb2c845fbe892f139ec100cc4bc730bce6d /crypto/cmp | |
parent | rsa: rename global rsaz_ sumbols so they are in namespace (diff) | |
download | openssl-6229815ab8f6e0a6e272c7a7094a061606cd0a90.tar.xz openssl-6229815ab8f6e0a6e272c7a7094a061606cd0a90.zip |
Use <> for #include openssl/xxx
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15468)
Diffstat (limited to 'crypto/cmp')
-rw-r--r-- | crypto/cmp/cmp_client.c | 3 | ||||
-rw-r--r-- | crypto/cmp/cmp_http.c | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/crypto/cmp/cmp_client.c b/crypto/cmp/cmp_client.c index dce7d0c010..367ddfd207 100644 --- a/crypto/cmp/cmp_client.c +++ b/crypto/cmp/cmp_client.c @@ -19,8 +19,7 @@ #include <openssl/err.h> #include <openssl/evp.h> #include <openssl/x509v3.h> - -#include "openssl/cmp_util.h" +#include <openssl/cmp_util.h> #define IS_CREP(t) ((t) == OSSL_CMP_PKIBODY_IP || (t) == OSSL_CMP_PKIBODY_CP \ || (t) == OSSL_CMP_PKIBODY_KUP) diff --git a/crypto/cmp/cmp_http.c b/crypto/cmp/cmp_http.c index 8da7a10fee..6ac4212db7 100644 --- a/crypto/cmp/cmp_http.c +++ b/crypto/cmp/cmp_http.c @@ -16,7 +16,7 @@ #include <openssl/http.h> #include "internal/sockets.h" -#include "openssl/cmp.h" +#include <openssl/cmp.h> #include "cmp_local.h" /* explicit #includes not strictly needed since implied by the above: */ |