[openssl-commits] [openssl] master update
Rich Salz
rsalz at openssl.org
Fri May 1 11:11:53 UTC 2015
The branch master has been updated
via 33fbca83dcd05b77f807fab205c4523b8cfe85b5 (commit)
from 5a3aa852524c8e388b864c87aade628076a5f4a7 (commit)
- Log -----------------------------------------------------------------
commit 33fbca83dcd05b77f807fab205c4523b8cfe85b5
Author: Rich Salz <rsalz at openssl.org>
Date: Fri May 1 07:11:17 2015 -0400
Fix some typo's, silence warnings.
Reviewed-by: Richard Levitte <levitte at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
apps/CA.pl.in | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/apps/CA.pl.in b/apps/CA.pl.in
index de5c013..9d12a8c 100644
--- a/apps/CA.pl.in
+++ b/apps/CA.pl.in
@@ -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;
More information about the openssl-commits
mailing list