From ac33c5a477568127ad99b1260a8978477de50e36 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 13 Jan 2016 15:13:02 +0100 Subject: [PATCH] VMS will downcase all command parameters unless they're quoted Reviewed-by: Rich Salz --- apps/CA.pl.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' ) { -- 2.40.0