Only display the "PKCS7: Waived invalid module sig (has authattrs)" once.
Suggested-by: Lenny Szubowicz <[email protected]> Signed-off-by: David Howells <[email protected]> Tested-by: Lenny Szubowicz <[email protected]> cc: Lukas Wunner <[email protected]> cc: Ignat Korchagin <[email protected]> cc: Jarkko Sakkinen <[email protected]> cc: Stephan Mueller <[email protected]> cc: Eric Biggers <[email protected]> cc: Herbert Xu <[email protected]> cc: [email protected] cc: [email protected] --- crypto/asymmetric_keys/pkcs7_verify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/asymmetric_keys/pkcs7_verify.c b/crypto/asymmetric_keys/pkcs7_verify.c index 519eecfe6778..474e2c1ae21b 100644 --- a/crypto/asymmetric_keys/pkcs7_verify.c +++ b/crypto/asymmetric_keys/pkcs7_verify.c @@ -427,7 +427,7 @@ int pkcs7_verify(struct pkcs7_message *pkcs7, if (pkcs7->have_authattrs) { #ifdef CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA if (pkcs7->authattrs_rej_waivable) { - pr_warn("Waived invalid module sig (has authattrs)\n"); + pr_warn_once("Waived invalid module sig (has authattrs)\n"); break; } #endif
