projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a14a740
)
apps/progs.pl: don't make digests disablable by default
author
Richard Levitte
<levitte@openssl.org>
Fri, 29 Apr 2016 07:08:06 +0000
(09:08 +0200)
committer
Richard Levitte
<levitte@openssl.org>
Fri, 29 Apr 2016 07:08:06 +0000
(09:08 +0200)
Some digest algorithms can't be disabled, don't pretend they can.
Reviewed-by: Matt Caswell <matt@openssl.org>
apps/progs.pl
patch
|
blob
|
history
diff --git
a/apps/progs.pl
b/apps/progs.pl
index e43d436665bc96476fc8223445f0273e54b4bb92..3ec16d54cb818f459573ab45bac5296452f4c871 100644
(file)
--- 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
;
}
}