diff options
Diffstat (limited to 'src/lib/libcrypto/conf/conf_api.c')
-rw-r--r-- | src/lib/libcrypto/conf/conf_api.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/src/lib/libcrypto/conf/conf_api.c b/src/lib/libcrypto/conf/conf_api.c index 5ed2a6332d..f986243b65 100644 --- a/src/lib/libcrypto/conf/conf_api.c +++ b/src/lib/libcrypto/conf/conf_api.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: conf_api.c,v 1.25 2025/03/07 11:01:12 tb Exp $ */ | 1 | /* $OpenBSD: conf_api.c,v 1.26 2025/03/08 09:35:53 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -91,19 +91,6 @@ _CONF_get_section(const CONF *conf, const char *section) | |||
91 | return (v); | 91 | return (v); |
92 | } | 92 | } |
93 | 93 | ||
94 | /* Up until OpenSSL 0.9.5a, this was CONF_get_section */ | ||
95 | STACK_OF(CONF_VALUE) * | ||
96 | _CONF_get_section_values(const CONF *conf, const char *section) | ||
97 | { | ||
98 | CONF_VALUE *v; | ||
99 | |||
100 | v = _CONF_get_section(conf, section); | ||
101 | if (v != NULL) | ||
102 | return ((STACK_OF(CONF_VALUE) *)v->value); | ||
103 | else | ||
104 | return (NULL); | ||
105 | } | ||
106 | |||
107 | int | 94 | int |
108 | _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) | 95 | _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) |
109 | { | 96 | { |