From 465bff8b10b7548845b4ddc2b8b373d794e2eef9 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Thu, 9 Sep 2021 10:57:34 -0400 Subject: Kconfig: Drop duplicate 'select SHA512' instances When dropping SHA512_ALGO in general, we didn't catch some cases where an option was selecting both SHA512 and SHA512_ALGO and caused them to select SHA512 twice. Kconfig doesn't complain, but this is still wrong and should be corrected. Fixes: e60e44993120 ("lib: Drop SHA512_ALGO in lieu of SHA512") Reported-by: Andreas Schwab Reviewed-by: Alexandru Gagniuc Signed-off-by: Tom Rini --- lib/crypt/Kconfig | 1 - 1 file changed, 1 deletion(-) (limited to 'lib/crypt') diff --git a/lib/crypt/Kconfig b/lib/crypt/Kconfig index 6a500296422..a59d5c7d1d5 100644 --- a/lib/crypt/Kconfig +++ b/lib/crypt/Kconfig @@ -20,7 +20,6 @@ config CRYPT_PW_SHA256 config CRYPT_PW_SHA512 bool "Provide sha512crypt" select SHA512 - select SHA512 help Enables support for the sha512crypt password-hashing algorithm. The prefix is "$6$". -- cgit v1.2.3