From: Chan, Donald Date: Mon, 19 Jul 2021 16:18:54 +0000 (-0700) Subject: lib: rsa: rsa-sign: Minor bug in debug message X-Git-Tag: v2021.10~76^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6d59ace988fdc1bb9f52ab70e21af0d40380c3f3;p=platform%2Fkernel%2Fu-boot.git lib: rsa: rsa-sign: Minor bug in debug message *sig_size isn't set until later so use the correct variables. Signed-off-by: Donald Chan Reviewed-by: Simon Glass --- diff --git a/lib/rsa/rsa-sign.c b/lib/rsa/rsa-sign.c index f4ed11e..c64deac 100644 --- a/lib/rsa/rsa-sign.c +++ b/lib/rsa/rsa-sign.c @@ -473,7 +473,7 @@ static int rsa_sign_with_key(EVP_PKEY *pkey, struct padding_algo *padding_algo, #endif EVP_MD_CTX_destroy(context); - debug("Got signature: %d bytes, expected %zu\n", *sig_size, size); + debug("Got signature: %zu bytes, expected %d\n", size, EVP_PKEY_size(pkey)); *sigp = sig; *sig_size = size;