cmac: preprocessor indentation fixes
authorPauli <paul.dale@oracle.com>
Tue, 14 Jan 2020 00:48:48 +0000 (10:48 +1000)
committerPauli <paul.dale@oracle.com>
Wed, 29 Jan 2020 09:49:22 +0000 (19:49 +1000)
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10836)

include/openssl/cmac.h

index e2b49a0574bcff8507afe7fd372d849f09c998a7..ef0ab3a36acace7d4d0bd1035bbb65ba89ac1ac3 100644 (file)
 
 # ifndef OPENSSL_NO_CMAC
 
-#ifdef __cplusplus
+#  ifdef __cplusplus
 extern "C" {
-#endif
+#  endif
 
-# include <openssl/evp.h>
+#  include <openssl/evp.h>
 
 /* Opaque */
 typedef struct CMAC_CTX_st CMAC_CTX;
@@ -39,9 +39,9 @@ int CMAC_Update(CMAC_CTX *ctx, const void *data, size_t dlen);
 int CMAC_Final(CMAC_CTX *ctx, unsigned char *out, size_t *poutlen);
 int CMAC_resume(CMAC_CTX *ctx);
 
-#ifdef  __cplusplus
+#  ifdef  __cplusplus
 }
-#endif
+#  endif
 
 # endif
 #endif