Commit 30562caa authored by Richard Levitte's avatar Richard Levitte
Browse files

util/mkdef.pl: Fix incomplete cherry-pick



The cherry pick that resulted in 65de3f16
was incomplete.

Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5283)
parent 65de3f16
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -198,7 +198,7 @@ foreach (@ARGV, split(/ /, $config{options}))
		}
	}
	if (/^no-deprecated$/) {
		foreach (keys %disabled_algorithms) {
		foreach (@known_algorithms) {
			if (/^DEPRECATEDIN_/) {
				$disabled_algorithms{$_} = 1;
			}