summaryrefslogtreecommitdiffstats
path: root/apps/progs.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-04-29 09:08:06 +0200
committerRichard Levitte <levitte@openssl.org>2016-04-29 09:08:06 +0200
commit08590a8647fe2586142451c2a9108388da629eb0 (patch)
tree3c188acd64dd06bb15567bede46b9f46585e55a4 /apps/progs.pl
parenta14a740dbecf112ed9de53fb90f34f2af871cda9 (diff)
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>
Diffstat (limited to 'apps/progs.pl')
-rw-r--r--apps/progs.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/progs.pl b/apps/progs.pl
index e43d436665..3ec16d54cb 100644
--- a/apps/progs.pl
+++ b/apps/progs.pl
@@ -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;
}
}