diff options
author | Dr. Matthias St. Pierre <matthias.st.pierre@ncp-e.com> | 2021-01-09 17:29:47 +0100 |
---|---|---|
committer | Dr. Matthias St. Pierre <matthias.st.pierre@ncp-e.com> | 2021-01-12 11:19:04 +0100 |
commit | b209835364de35541d835185f3dc3a984e2c1545 (patch) | |
tree | da9a94161b791a3eb68408e1d635f04e1fa7967d /crypto/ocsp/v3_ocsp.c | |
parent | Close /dev/crypto file descriptor after CRIOGET ioctl(). (diff) | |
download | openssl-b209835364de35541d835185f3dc3a984e2c1545.tar.xz openssl-b209835364de35541d835185f3dc3a984e2c1545.zip |
v3_ocsp.c: fix indentation of include directives
Fixes #13820
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/13822)
Diffstat (limited to 'crypto/ocsp/v3_ocsp.c')
-rw-r--r-- | crypto/ocsp/v3_ocsp.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/crypto/ocsp/v3_ocsp.c b/crypto/ocsp/v3_ocsp.c index 7d3d730457..9e24102685 100644 --- a/crypto/ocsp/v3_ocsp.c +++ b/crypto/ocsp/v3_ocsp.c @@ -7,14 +7,14 @@ * https://www.openssl.org/source/license.html */ -# include <stdio.h> -# include "internal/cryptlib.h" -# include <openssl/conf.h> -# include <openssl/asn1.h> -# include <openssl/ocsp.h> -# include "ocsp_local.h" -# include <openssl/x509v3.h> -# include "../x509/ext_dat.h" +#include <stdio.h> +#include "internal/cryptlib.h" +#include <openssl/conf.h> +#include <openssl/asn1.h> +#include <openssl/ocsp.h> +#include "ocsp_local.h" +#include <openssl/x509v3.h> +#include "../x509/ext_dat.h" /* * OCSP extensions and a couple of CRL entry extensions |