Commit 08590a86 authored by Richard Levitte's avatar Richard Levitte
Browse files

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



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

Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
parent a14a740d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
        }
}