mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 21:49:33 +02:00
Dropped obolete patches and pulled updates for debian patches. Addresses CVEs: http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2012-2686 http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2013-0166 http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2013-0169 [YOCTO #3965] (From OE-Core rev: 0470edd01c0aebaa78db137e365a7e22bfb199e9) Signed-off-by: Radu Moisan <radu.moisan@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
881 B
Diff
23 lines
881 B
Diff
Upstream-Status: Backport [debian]
|
|
|
|
Index: openssl-0.9.8m/apps/CA.pl.in
|
|
===================================================================
|
|
--- openssl-0.9.8m.orig/apps/CA.pl.in 2006-04-28 00:28:51.000000000 +0000
|
|
+++ openssl-0.9.8m/apps/CA.pl.in 2010-02-27 00:36:51.000000000 +0000
|
|
@@ -65,6 +65,7 @@
|
|
foreach (@ARGV) {
|
|
if ( /^(-\?|-h|-help)$/ ) {
|
|
print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
|
|
+ print STDERR "usage: CA -signcert certfile keyfile|-newcert|-newreq|-newca|-sign|-verify\n";
|
|
exit 0;
|
|
} elsif (/^-newcert$/) {
|
|
# create a certificate
|
|
@@ -165,6 +166,7 @@
|
|
} else {
|
|
print STDERR "Unknown arg $_\n";
|
|
print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
|
|
+ print STDERR "usage: CA -signcert certfile keyfile|-newcert|-newreq|-newca|-sign|-verify\n";
|
|
exit 1;
|
|
}
|
|
}
|