summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/conf/conf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/conf/conf.h')
-rw-r--r--src/lib/libcrypto/conf/conf.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/conf/conf.h b/src/lib/libcrypto/conf/conf.h
index 5d10163bfb..7b30ad453d 100644
--- a/src/lib/libcrypto/conf/conf.h
+++ b/src/lib/libcrypto/conf/conf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: conf.h,v 1.16 2022/07/12 14:42:48 kn Exp $ */ 1/* $OpenBSD: conf.h,v 1.17 2024/08/31 09:18:00 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 *
@@ -131,8 +131,6 @@ char *CONF_get_string(LHASH_OF(CONF_VALUE) *conf, const char *group,
131long CONF_get_number(LHASH_OF(CONF_VALUE) *conf, const char *group, 131long CONF_get_number(LHASH_OF(CONF_VALUE) *conf, const char *group,
132 const char *name); 132 const char *name);
133void CONF_free(LHASH_OF(CONF_VALUE) *conf); 133void CONF_free(LHASH_OF(CONF_VALUE) *conf);
134int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out);
135int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out);
136 134
137void OPENSSL_config(const char *config_name); 135void OPENSSL_config(const char *config_name);
138void OPENSSL_no_config(void); 136void OPENSSL_no_config(void);
@@ -159,8 +157,6 @@ STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section);
159char *NCONF_get_string(const CONF *conf, const char *group, const char *name); 157char *NCONF_get_string(const CONF *conf, const char *group, const char *name);
160int NCONF_get_number_e(const CONF *conf, const char *group, const char *name, 158int NCONF_get_number_e(const CONF *conf, const char *group, const char *name,
161 long *result); 159 long *result);
162int NCONF_dump_fp(const CONF *conf, FILE *out);
163int NCONF_dump_bio(const CONF *conf, BIO *out);
164 160
165#define NCONF_get_number(c,g,n,r) NCONF_get_number_e(c,g,n,r) 161#define NCONF_get_number(c,g,n,r) NCONF_get_number_e(c,g,n,r)
166 162