From 30562caa34de5f23dead9b246aaf284748e184bf Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 8 Feb 2018 12:54:25 +0100 Subject: [PATCH] util/mkdef.pl: Fix incomplete cherry-pick The cherry pick that resulted in 65de3f1657d8a3bdb7c48063931a3c619817c921 was incomplete. Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/5283) --- util/mkdef.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/mkdef.pl b/util/mkdef.pl index 3775b70e93..66db26c3b9 100755 --- a/util/mkdef.pl +++ b/util/mkdef.pl @@ -198,7 +198,7 @@ foreach (@ARGV, split(/ /, $config{options})) } } if (/^no-deprecated$/) { - foreach (keys %disabled_algorithms) { + foreach (@known_algorithms) { if (/^DEPRECATEDIN_/) { $disabled_algorithms{$_} = 1; } -- 2.25.1