aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-02-23 12:53:49 +0000
committerBen Laurie <ben@openssl.org>1999-02-23 12:53:49 +0000
commit15799403ada7bea696c9882cf0006a4a40ff5baf (patch)
treed10d99381cdc08f756873fb26687035c920ec0d1 /apps
parent3a1daca9efa22c3d9e38f40c84b48388fa57585d (diff)
downloadopenssl-15799403ada7bea696c9882cf0006a4a40ff5baf.tar.gz
Fix more warnings.
Diffstat (limited to 'apps')
-rw-r--r--apps/ca.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/ca.c b/apps/ca.c
index 6f3b1a8501..ce4181e889 100644
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -2016,15 +2016,15 @@ char *str;
return(ASN1_UTCTIME_check(&tm));
}
-static int add_oid_section(conf)
-LHASH *conf;
+static int add_oid_section(hconf)
+LHASH *hconf;
{
char *p;
STACK *sktmp;
CONF_VALUE *cnf;
int i;
- if(!(p=CONF_get_string(conf,NULL,"oid_section"))) return 1;
- if(!(sktmp = CONF_get_section(conf, p))) {
+ if(!(p=CONF_get_string(hconf,NULL,"oid_section"))) return 1;
+ if(!(sktmp = CONF_get_section(hconf, p))) {
BIO_printf(bio_err, "problem loading oid section %s\n", p);
return 0;
}