diff options
author | Ben Laurie <ben@openssl.org> | 1999-04-12 19:17:39 +0200 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 1999-04-12 19:17:39 +0200 |
commit | a36a1a5146df87700eb8d3c7091cbd7106c958cf (patch) | |
tree | a43306da1e68ae78406f50d0980c5179a8013444 /apps | |
parent | Add `openssl ca -revoke <certfile>' facility which revokes a certificate (diff) | |
download | openssl-a36a1a5146df87700eb8d3c7091cbd7106c958cf.tar.xz openssl-a36a1a5146df87700eb8d3c7091cbd7106c958cf.zip |
gcc claims this is a shadow, though I can't find what it is shadowing...
Diffstat (limited to 'apps')
-rw-r--r-- | apps/ca.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; @@ -388,7 +388,7 @@ EF_ALIGNMENT=0; { if (--argc < 1) goto bad; infile= *(++argv); - revoke=1; + dorevoke=1; } else { @@ -1088,7 +1088,7 @@ bad: PEM_write_bio_X509_CRL(Sout,crl); } /*****************************************************************/ - if (revoke) + if (dorevoke) { in=BIO_new(BIO_s_file()); out=BIO_new(BIO_s_file()); |