From 4a47112834d74d90d9e44ae52f2cf67ef5a98fb7 Mon Sep 17 00:00:00 2001 From: Masashi Honma Date: Fri, 28 Dec 2018 05:40:17 +0900 Subject: [PATCH] Remove duplicate #include Signed-off-by: Masashi Honma --- ChangeLog | 5 +++++ programs/pkey/rsa_sign_pss.c | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 661eb8251..71d21d031 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ mbed TLS ChangeLog (Sorted per branch, date) += mbed TLS x.x.x branch released xxxx-xx-xx + +Bugfix + * Remove a duplicate #include in a sample program. Fixed by Masashi Honma #2326. + = mbed TLS 2.7.9 branch released 2018-12-21 Bugfix diff --git a/programs/pkey/rsa_sign_pss.c b/programs/pkey/rsa_sign_pss.c index b0b0f7ecf..e1c8ef6fe 100644 --- a/programs/pkey/rsa_sign_pss.c +++ b/programs/pkey/rsa_sign_pss.c @@ -54,7 +54,6 @@ int main( void ) #include "mbedtls/ctr_drbg.h" #include "mbedtls/md.h" #include "mbedtls/rsa.h" -#include "mbedtls/md.h" #include "mbedtls/x509.h" #include