summaryrefslogtreecommitdiffstats
path: root/crypto/conf
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-06-21 10:08:56 +0000
committerBen Laurie <ben@openssl.org>1999-06-21 10:08:56 +0000
commit10cea23bd46cb43fab1de5c59828ae67f80975c3 (patch)
tree6734d6f61f4bc52ab6dcdaf54beb283a6227e8e3 /crypto/conf
parenta6c1b3a9ac5db00809c679e27ed057f89d10bbde (diff)
Don't shadow.
Diffstat (limited to 'crypto/conf')
-rw-r--r--crypto/conf/conf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/conf/conf.c b/crypto/conf/conf.c
index f98451e77d..7d8b89168a 100644
--- a/crypto/conf/conf.c
+++ b/crypto/conf/conf.c
@@ -70,7 +70,7 @@
static void value_free_hash(CONF_VALUE *a, LHASH *conf);
static void value_free_stack(CONF_VALUE *a,LHASH *conf);
static unsigned long hash(CONF_VALUE *v);
-static int cmp(CONF_VALUE *a,CONF_VALUE *b);
+static int cmp_conf(CONF_VALUE *a,CONF_VALUE *b);
static char *eat_ws(char *p);
static char *eat_alpha_numeric(char *p);
static void clear_comments(char *p);
@@ -153,7 +153,7 @@ LHASH *CONF_load_bio(LHASH *h, BIO *in, long *line)
if (h == NULL)
{
- if ((ret=lh_new(hash,cmp)) == NULL)
+ if ((ret=lh_new(hash,cmp_conf)) == NULL)
{
CONFerr(CONF_F_CONF_LOAD_BIO,ERR_R_MALLOC_FAILURE);
goto err;
@@ -653,7 +653,7 @@ static unsigned long hash(CONF_VALUE *v)
return((lh_strhash(v->section)<<2)^lh_strhash(v->name));
}
-static int cmp(CONF_VALUE *a, CONF_VALUE *b)
+static int cmp_conf(CONF_VALUE *a, CONF_VALUE *b)
{
int i;