summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-02-08 12:54:25 +0100
committerRichard Levitte <levitte@openssl.org>2018-02-08 12:54:25 +0100
commit30562caa34de5f23dead9b246aaf284748e184bf (patch)
tree0cf3aab51728fa8d2279c0e0042b613bf2e16999 /util
parent65de3f1657d8a3bdb7c48063931a3c619817c921 (diff)
util/mkdef.pl: Fix incomplete cherry-pick
The cherry pick that resulted in 65de3f1657d8a3bdb7c48063931a3c619817c921 was incomplete. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5283)
Diffstat (limited to 'util')
-rwxr-xr-xutil/mkdef.pl2
1 files changed, 1 insertions, 1 deletions
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;
}