From b2be1ea2c37cc9ac1c44e34f50df2b2207abdbdd Mon Sep 17 00:00:00 2001 From: Pauli Date: Thu, 9 Jan 2020 09:46:13 +1000 Subject: [PATCH] md2: fix preprocessor indentation Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/10790) --- include/openssl/md2.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/openssl/md2.h b/include/openssl/md2.h index f4a14caa72..6b78997561 100644 --- a/include/openssl/md2.h +++ b/include/openssl/md2.h @@ -19,15 +19,15 @@ # include # ifndef OPENSSL_NO_MD2 -# include -# ifdef __cplusplus +# include +# ifdef __cplusplus extern "C" { -# endif +# endif typedef unsigned char MD2_INT; -# define MD2_DIGEST_LENGTH 16 -# define MD2_BLOCK 16 +# define MD2_DIGEST_LENGTH 16 +# define MD2_BLOCK 16 typedef struct MD2state_st { unsigned int num; @@ -42,9 +42,9 @@ int MD2_Update(MD2_CTX *c, const unsigned char *data, size_t len); int MD2_Final(unsigned char *md, MD2_CTX *c); unsigned char *MD2(const unsigned char *d, size_t n, unsigned char *md); -# ifdef __cplusplus +# ifdef __cplusplus } -# endif +# endif # endif #endif -- 2.25.1