From: Richard Levitte Date: Thu, 8 Feb 2018 11:54:25 +0000 (+0100) Subject: util/mkdef.pl: Fix incomplete cherry-pick X-Git-Tag: OpenSSL_1_1_0h~83 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=30562caa34de5f23dead9b246aaf284748e184bf;p=oweals%2Fopenssl.git 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) --- 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; }