apps/progs.pl: don't make digests disablable by default

Some digest algorithms can't be disabled, don't pretend they can.

Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
Richard Levitte 2016-04-29 09:08:06 +02:00
parent a14a740dbe
commit 08590a8647

View File

@ -108,7 +108,7 @@ foreach my $cmd (
} elsif (my $disabler = $md_disabler{$cmd}) {
print "#ifndef OPENSSL_NO_".uc($disabler)."\n${str}#endif\n";
} else {
print "#ifndef OPENSSL_NO_".uc($cmd)."\n${str}#endif\n";
print $str;
}
}