summaryrefslogtreecommitdiffstats
path: root/crypto/conf/conf_lib.c
diff options
context:
space:
mode:
authorLutz Jänicke <jaenicke@openssl.org>2002-06-13 17:40:27 +0000
committerLutz Jänicke <jaenicke@openssl.org>2002-06-13 17:40:27 +0000
commit40889b9cd36ba6233712d163c46154eba4a26ad7 (patch)
treef4a5ab0b224dbe89a38bf9528c1c41921a29ac30 /crypto/conf/conf_lib.c
parent99889b46c95711397389959a093f5556ebb39e4b (diff)
Add missing prototypes.
Submitted by: Goetz Babin-Ebell <babinebell@trustcenter.de> PR: 89
Diffstat (limited to 'crypto/conf/conf_lib.c')
-rw-r--r--crypto/conf/conf_lib.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/conf/conf_lib.c b/crypto/conf/conf_lib.c
index 7998f34c7b..6a3cf109dd 100644
--- a/crypto/conf/conf_lib.c
+++ b/crypto/conf/conf_lib.c
@@ -382,8 +382,9 @@ int NCONF_dump_bio(const CONF *conf, BIO *out)
return conf->meth->dump(conf, out);
}
+
/* This function should be avoided */
-#undef NCONF_get_number
+#if 0
long NCONF_get_number(CONF *conf,char *group,char *name)
{
int status;
@@ -397,4 +398,4 @@ long NCONF_get_number(CONF *conf,char *group,char *name)
}
return ret;
}
-
+#endif