From: Pauli Date: Wed, 8 Jan 2020 23:46:13 +0000 (+1000) Subject: md2: fix preprocessor indentation X-Git-Tag: openssl-3.0.0-alpha1~707 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b2be1ea2c37cc9ac1c44e34f50df2b2207abdbdd;p=oweals%2Fopenssl.git md2: fix preprocessor indentation Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/10790) --- 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