summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-04-28 12:13:45 +0000
committerBen Laurie <ben@openssl.org>1999-04-28 12:13:45 +0000
commit8b1a3a9238db5ae49bfb5f86370f9fef8c923c5a (patch)
tree1ab4b56fc48d38574e6565dc5362e12c251d9b3e /apps
parent01378334dcd5940b2c4a891df9c8725456b2085f (diff)
Don't shadow.
Diffstat (limited to 'apps')
-rw-r--r--apps/x509.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/x509.c b/apps/x509.c
index 210a25fb09..5434b53365 100644
--- a/apps/x509.c
+++ b/apps/x509.c
@@ -323,7 +323,7 @@ bad:
if (extfile) {
long errorline;
- X509V3_CTX ctx;
+ X509V3_CTX ctx2;
if (!(extconf=CONF_load(NULL,extfile,&errorline))) {
if (errorline <= 0)
BIO_printf(bio_err,
@@ -337,9 +337,9 @@ bad:
}
if(!(extsect = CONF_get_string(extconf, "default",
"extensions"))) extsect = "default";
- X509V3_set_ctx_test(&ctx);
- X509V3_set_conf_lhash(&ctx, extconf);
- if(!X509V3_EXT_add_conf(extconf, &ctx, extsect, NULL)) {
+ X509V3_set_ctx_test(&ctx2);
+ X509V3_set_conf_lhash(&ctx2, extconf);
+ if(!X509V3_EXT_add_conf(extconf, &ctx2, extsect, NULL)) {
BIO_printf(bio_err,
"Error Loading extension section %s\n",
extsect);
@@ -868,11 +868,11 @@ static int x509_certify(X509_STORE *ctx, char *CAfile, const EVP_MD *digest,
EVP_PKEY_free(upkey);
if(conf) {
- X509V3_CTX ctx;
+ X509V3_CTX ctx2;
X509_set_version(x,2); /* version 3 certificate */
- X509V3_set_ctx(&ctx, xca, x, NULL, NULL, 0);
- X509V3_set_conf_lhash(&ctx, conf);
- if(!X509V3_EXT_add_conf(conf, &ctx, section, x)) goto end;
+ X509V3_set_ctx(&ctx2, xca, x, NULL, NULL, 0);
+ X509V3_set_conf_lhash(&ctx2, conf);
+ if(!X509V3_EXT_add_conf(conf, &ctx2, section, x)) goto end;
}
if (!X509_sign(x,pkey,digest)) goto end;