Skip to content

Commit

Permalink
gcc claims this is a shadow, though I can't find what it is shadowing...
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Laurie committed Apr 12, 1999
1 parent f9a2593 commit a36a1a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/ca.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ char **argv;
int req=0;
int verbose=0;
int gencrl=0;
int revoke=0;
int dorevoke=0;
long crldays=0;
long crlhours=0;
long errorline= -1;
Expand Down Expand Up @@ -388,7 +388,7 @@ EF_ALIGNMENT=0;
{
if (--argc < 1) goto bad;
infile= *(++argv);
revoke=1;
dorevoke=1;
}
else
{
Expand Down Expand Up @@ -1088,7 +1088,7 @@ EF_ALIGNMENT=0;
PEM_write_bio_X509_CRL(Sout,crl);
}
/*****************************************************************/
if (revoke)
if (dorevoke)
{
in=BIO_new(BIO_s_file());
out=BIO_new(BIO_s_file());
Expand Down

0 comments on commit a36a1a5

Please sign in to comment.