From 0af32483f3a3f4da503be948483c6d1f811b153a Mon Sep 17 00:00:00 2001 From: Andrzej Kurek Date: Fri, 7 Apr 2023 03:10:28 -0400 Subject: [PATCH] Change the format of md.h include comments Signed-off-by: Andrzej Kurek --- programs/pkey/dh_client.c | 1 + programs/pkey/dh_server.c | 2 +- programs/pkey/pk_sign.c | 2 +- programs/pkey/pk_verify.c | 2 +- programs/pkey/rsa_sign.c | 2 +- programs/pkey/rsa_sign_pss.c | 2 +- programs/pkey/rsa_verify.c | 2 +- programs/pkey/rsa_verify_pss.c | 2 +- programs/x509/cert_req.c | 2 +- programs/x509/cert_write.c | 2 +- 10 files changed, 10 insertions(+), 9 deletions(-) diff --git a/programs/pkey/dh_client.c b/programs/pkey/dh_client.c index be0b6e9f6..5a2c30fc2 100644 --- a/programs/pkey/dh_client.c +++ b/programs/pkey/dh_client.c @@ -20,6 +20,7 @@ #include "mbedtls/build_info.h" #include "mbedtls/platform.h" +/* md.h is included this early since MD_CAN_XXX macros are defined there. */ #include "mbedtls/md.h" #if defined(MBEDTLS_AES_C) && defined(MBEDTLS_DHM_C) && \ diff --git a/programs/pkey/dh_server.c b/programs/pkey/dh_server.c index b883653eb..c940be0c0 100644 --- a/programs/pkey/dh_server.c +++ b/programs/pkey/dh_server.c @@ -20,7 +20,7 @@ #include "mbedtls/build_info.h" #include "mbedtls/platform.h" -// md.h is included this early since MD_CAN_XXX macros are defined there. +/* md.h is included this early since MD_CAN_XXX macros are defined there. */ #include "mbedtls/md.h" #if defined(MBEDTLS_AES_C) && defined(MBEDTLS_DHM_C) && \ diff --git a/programs/pkey/pk_sign.c b/programs/pkey/pk_sign.c index 2e9b2d837..82cb6a1d6 100644 --- a/programs/pkey/pk_sign.c +++ b/programs/pkey/pk_sign.c @@ -20,7 +20,7 @@ #include "mbedtls/build_info.h" #include "mbedtls/platform.h" -// md.h is included this early since MD_CAN_XXX macros are defined there. +/* md.h is included this early since MD_CAN_XXX macros are defined there. */ #include "mbedtls/md.h" #if !defined(MBEDTLS_BIGNUM_C) || !defined(MBEDTLS_ENTROPY_C) || \ diff --git a/programs/pkey/pk_verify.c b/programs/pkey/pk_verify.c index bdeb559eb..0c549e06e 100644 --- a/programs/pkey/pk_verify.c +++ b/programs/pkey/pk_verify.c @@ -20,7 +20,7 @@ #include "mbedtls/build_info.h" #include "mbedtls/platform.h" -// md.h is included this early since MD_CAN_XXX macros are defined there. +/* md.h is included this early since MD_CAN_XXX macros are defined there. */ #include "mbedtls/md.h" #if !defined(MBEDTLS_BIGNUM_C) || !defined(MBEDTLS_MD_C) || \ diff --git a/programs/pkey/rsa_sign.c b/programs/pkey/rsa_sign.c index 8ba3e7d1f..64375e9e7 100644 --- a/programs/pkey/rsa_sign.c +++ b/programs/pkey/rsa_sign.c @@ -20,7 +20,7 @@ #include "mbedtls/build_info.h" #include "mbedtls/platform.h" -// md.h is included this early since MD_CAN_XXX macros are defined there. +/* md.h is included this early since MD_CAN_XXX macros are defined there. */ #include "mbedtls/md.h" #if !defined(MBEDTLS_BIGNUM_C) || !defined(MBEDTLS_RSA_C) || \ diff --git a/programs/pkey/rsa_sign_pss.c b/programs/pkey/rsa_sign_pss.c index fe3de0309..03882cd2f 100644 --- a/programs/pkey/rsa_sign_pss.c +++ b/programs/pkey/rsa_sign_pss.c @@ -20,7 +20,7 @@ #include "mbedtls/build_info.h" #include "mbedtls/platform.h" -// md.h is included this early since MD_CAN_XXX macros are defined there. +/* md.h is included this early since MD_CAN_XXX macros are defined there. */ #include "mbedtls/md.h" #if !defined(MBEDTLS_MD_C) || !defined(MBEDTLS_ENTROPY_C) || \ diff --git a/programs/pkey/rsa_verify.c b/programs/pkey/rsa_verify.c index ccdf13eb4..d525010df 100644 --- a/programs/pkey/rsa_verify.c +++ b/programs/pkey/rsa_verify.c @@ -20,7 +20,7 @@ #include "mbedtls/build_info.h" #include "mbedtls/platform.h" -// md.h is included this early since MD_CAN_XXX macros are defined there. +/* md.h is included this early since MD_CAN_XXX macros are defined there. */ #include "mbedtls/md.h" #if !defined(MBEDTLS_BIGNUM_C) || !defined(MBEDTLS_RSA_C) || \ diff --git a/programs/pkey/rsa_verify_pss.c b/programs/pkey/rsa_verify_pss.c index d7efa6549..e21e92749 100644 --- a/programs/pkey/rsa_verify_pss.c +++ b/programs/pkey/rsa_verify_pss.c @@ -20,7 +20,7 @@ #include "mbedtls/build_info.h" #include "mbedtls/platform.h" -// md.h is included this early since MD_CAN_XXX macros are defined there. +/* md.h is included this early since MD_CAN_XXX macros are defined there. */ #include "mbedtls/md.h" #if !defined(MBEDTLS_MD_C) || !defined(MBEDTLS_ENTROPY_C) || \ diff --git a/programs/x509/cert_req.c b/programs/x509/cert_req.c index f35d62963..396aaf3f8 100644 --- a/programs/x509/cert_req.c +++ b/programs/x509/cert_req.c @@ -20,7 +20,7 @@ #include "mbedtls/build_info.h" #include "mbedtls/platform.h" -// md.h is included this early since MD_CAN_XXX macros are defined there. +/* md.h is included this early since MD_CAN_XXX macros are defined there. */ #include "mbedtls/md.h" #if !defined(MBEDTLS_X509_CSR_WRITE_C) || !defined(MBEDTLS_FS_IO) || \ diff --git a/programs/x509/cert_write.c b/programs/x509/cert_write.c index 5c911ca75..a82268424 100644 --- a/programs/x509/cert_write.c +++ b/programs/x509/cert_write.c @@ -20,7 +20,7 @@ #include "mbedtls/build_info.h" #include "mbedtls/platform.h" -// md.h is included this early since MD_CAN_XXX macros are defined there. +/* md.h is included this early since MD_CAN_XXX macros are defined there. */ #include "mbedtls/md.h" #if !defined(MBEDTLS_X509_CRT_WRITE_C) || \