summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/conf/conf.h
diff options
context:
space:
mode:
authortb <>2024-08-31 09:18:00 +0000
committertb <>2024-08-31 09:18:00 +0000
commit118051aad867c86fdfdd1e12985c74aceed9470f (patch)
tree08439682ae0357dcc698bee785d05e0a152d2e0b /src/lib/libcrypto/conf/conf.h
parent9bcd94a09cac618808e1f47aff1c670fbdb6828d (diff)
downloadopenbsd-118051aad867c86fdfdd1e12985c74aceed9470f.tar.gz
openbsd-118051aad867c86fdfdd1e12985c74aceed9470f.tar.bz2
openbsd-118051aad867c86fdfdd1e12985c74aceed9470f.zip
Remove unused {,N}CONF_dump_{bio,fp}()
It's time to start removing some horrors from the conf/ garbage. If the current top layer wasn't terrible enough, you could always slap another one on top of it and it would then be truly marvellous. ok beck jsing
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