From 4d432d6ea527cc9fc10faae4425818574a1e4868 Mon Sep 17 00:00:00 2001 From: Harry Ramsey Date: Fri, 11 Oct 2024 12:20:13 +0100 Subject: [PATCH] Remove mbedtls/build_info from pkcs7.c This commit removes #include "mbedtls/buildinfo.h" from pkcs7.c as it is not needed unlike other C modules. Signed-off-by: Harry Ramsey --- library/pkcs7.c | 1 - 1 file changed, 1 deletion(-) diff --git a/library/pkcs7.c b/library/pkcs7.c index 9b53ceea3..ff0567c6f 100644 --- a/library/pkcs7.c +++ b/library/pkcs7.c @@ -4,7 +4,6 @@ */ #include "x509_internal.h" -#include "mbedtls/build_info.h" #if defined(MBEDTLS_PKCS7_C) #include "mbedtls/pkcs7.h" #include "mbedtls/asn1.h"