mirror of https://github.com/openssl/openssl.git
apps/CA.pl.in: restore the quotes around -CAfile, they were there for a reason
Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15823)
This commit is contained in:
parent
ed0bd67d4b
commit
f49b42e6ee
|
@ -209,7 +209,9 @@ if ($WHAT eq '-newcert' ) {
|
||||||
} elsif ($WHAT eq '-verify' ) {
|
} elsif ($WHAT eq '-verify' ) {
|
||||||
my @files = @ARGV ? @ARGV : ( $NEWCERT );
|
my @files = @ARGV ? @ARGV : ( $NEWCERT );
|
||||||
foreach my $file (@files) {
|
foreach my $file (@files) {
|
||||||
my $status = run("$VERIFY -CAfile ${CATOP}/$CACERT $file $EXTRA{verify}");
|
# -CAfile quoted for VMS, since the C RTL downcases all unquoted
|
||||||
|
# arguments to C programs
|
||||||
|
my $status = run("$VERIFY \"-CAfile\" ${CATOP}/$CACERT $file $EXTRA{verify}");
|
||||||
$RET = $status if $status != 0;
|
$RET = $status if $status != 0;
|
||||||
}
|
}
|
||||||
} elsif ($WHAT eq '-crl' ) {
|
} elsif ($WHAT eq '-crl' ) {
|
||||||
|
|
Loading…
Reference in New Issue