From: Dr. Stephen Henson Date: Fri, 28 Apr 2006 00:30:49 +0000 (+0000) Subject: Fix from stable branch. X-Git-Tag: OpenSSL_0_9_8k^2~1357 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=816c2b5a792aa9ea0c25eda5fd2f2f94f1a36bb3;p=oweals%2Fopenssl.git Fix from stable branch. --- diff --git a/apps/CA.pl.in b/apps/CA.pl.in index f8170f81ba..c783a6e6a5 100644 --- a/apps/CA.pl.in +++ b/apps/CA.pl.in @@ -94,6 +94,9 @@ foreach (@ARGV) { mkdir "${CATOP}/private", $DIRMODE; open OUT, ">${CATOP}/index.txt"; close OUT; + open OUT, ">${CATOP}/crlnumber"; + print OUT "01\n"; + close OUT; } if ( ! -f "${CATOP}/private/$CAKEY" ) { print "CA certificate filename (or enter to create)\n";