Skip to content

Commit

Permalink
Fix some typo's, silence warnings.
Browse files Browse the repository at this point in the history
Reviewed-by: Richard Levitte <[email protected]>
  • Loading branch information
Rich Salz committed May 1, 2015
1 parent 5a3aa85 commit 33fbca8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/CA.pl.in
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ if ($WHAT eq '-newcert' ) {
. " -infiles tmp.pem") if $RET == 0;
print "Signed certificate is in $NEWCERT\n" if $RET == 0;
} elsif ($WHAT eq '-verify' ) {
my @files = @ARGV ? @ARGV : ( $NEWCVERT );
my @files = @ARGV ? @ARGV : ( $NEWCERT );
my $file;
foreach $file (@files) {
my $status = run("$VERIFY -CAfile ${CATOP}/$CACERT $file");
$RET = $status if $status != 0;
Expand Down

0 comments on commit 33fbca8

Please sign in to comment.