Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-01-13 17:13:02 +0300
committerRichard Levitte <levitte@openssl.org>2016-01-13 17:23:44 +0300
commitac33c5a477568127ad99b1260a8978477de50e36 (patch)
tree3cfb788c3058d2e322057e2810f38d1d9cabc6af /apps/CA.pl.in
parent917c343ef8495ccb32cfc2fe7e42c57914e40061 (diff)
VMS will downcase all command parameters unless they're quoted
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps/CA.pl.in')
-rw-r--r--apps/CA.pl.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/CA.pl.in b/apps/CA.pl.in
index a814ebf3c2..23e116a5f5 100644
--- a/apps/CA.pl.in
+++ b/apps/CA.pl.in
@@ -164,7 +164,7 @@ if ($WHAT eq '-newcert' ) {
my @files = @ARGV ? @ARGV : ( $NEWCERT );
my $file;
foreach $file (@files) {
- my $status = run("$VERIFY -CAfile ${CATOP}/$CACERT $file");
+ my $status = run("$VERIFY \"-CAfile\" ${CATOP}/$CACERT $file");
$RET = $status if $status != 0;
}
} elsif ($WHAT eq '-crl' ) {