summaryrefslogtreecommitdiffstats
path: root/crypto/conf/conf_api.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-04-26 12:13:19 +0000
committerRichard Levitte <levitte@openssl.org>2000-04-26 12:13:19 +0000
commit21346b7a04f68c97347488078deda4b175a8672b (patch)
treeb1aed2a99548d6da3244eeaeb54296c0d048d033 /crypto/conf/conf_api.c
parentebbaebf784b853a89d9779a79fa0ce0de3755262 (diff)
Clarifications and removal of double declaration...
Diffstat (limited to 'crypto/conf/conf_api.c')
-rw-r--r--crypto/conf/conf_api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/conf/conf_api.c b/crypto/conf/conf_api.c
index 975d5c7abe..29989270ab 100644
--- a/crypto/conf/conf_api.c
+++ b/crypto/conf/conf_api.c
@@ -66,7 +66,7 @@ static void value_free_stack(CONF_VALUE *a,LHASH *conf);
static unsigned long hash(CONF_VALUE *v);
static int cmp_conf(CONF_VALUE *a,CONF_VALUE *b);
-/* This was get_section */
+/* Up until OpenSSL 0.9.5a, this was get_section */
CONF_VALUE *_CONF_get_section(CONF *conf, char *section)
{
CONF_VALUE *v,vv;
@@ -78,7 +78,7 @@ CONF_VALUE *_CONF_get_section(CONF *conf, char *section)
return(v);
}
-/* This was CONF_get_section */
+/* Up until OpenSSL 0.9.5a, this was CONF_get_section */
STACK_OF(CONF_VALUE) *_CONF_get_section_values(CONF *conf, char *section)
{
CONF_VALUE *v;
@@ -247,7 +247,7 @@ static int cmp_conf(CONF_VALUE *a, CONF_VALUE *b)
return((a->name == NULL)?-1:1);
}
-/* This was new_section */
+/* Up until OpenSSL 0.9.5a, this was new_section */
CONF_VALUE *_CONF_new_section(CONF *conf, char *section)
{
STACK *sk=NULL;