Commit ac33c5a4 authored by Richard Levitte's avatar Richard Levitte
Browse files

VMS will downcase all command parameters unless they're quoted



Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent 917c343e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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' ) {