From: Richard Levitte Date: Wed, 13 Jan 2016 14:13:02 +0000 (+0100) Subject: VMS will downcase all command parameters unless they're quoted X-Git-Tag: OpenSSL_1_1_0-pre2~31 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ac33c5a477568127ad99b1260a8978477de50e36;p=oweals%2Fopenssl.git VMS will downcase all command parameters unless they're quoted Reviewed-by: Rich Salz --- 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' ) {