diff options
author | tb <> | 2024-08-31 09:18:00 +0000 |
---|---|---|
committer | tb <> | 2024-08-31 09:18:00 +0000 |
commit | 118051aad867c86fdfdd1e12985c74aceed9470f (patch) | |
tree | 08439682ae0357dcc698bee785d05e0a152d2e0b /src/lib/libcrypto/conf/conf.h | |
parent | 9bcd94a09cac618808e1f47aff1c670fbdb6828d (diff) | |
download | openbsd-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.h | 6 |
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, | |||
131 | long CONF_get_number(LHASH_OF(CONF_VALUE) *conf, const char *group, | 131 | long CONF_get_number(LHASH_OF(CONF_VALUE) *conf, const char *group, |
132 | const char *name); | 132 | const char *name); |
133 | void CONF_free(LHASH_OF(CONF_VALUE) *conf); | 133 | void CONF_free(LHASH_OF(CONF_VALUE) *conf); |
134 | int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out); | ||
135 | int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out); | ||
136 | 134 | ||
137 | void OPENSSL_config(const char *config_name); | 135 | void OPENSSL_config(const char *config_name); |
138 | void OPENSSL_no_config(void); | 136 | void OPENSSL_no_config(void); |
@@ -159,8 +157,6 @@ STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section); | |||
159 | char *NCONF_get_string(const CONF *conf, const char *group, const char *name); | 157 | char *NCONF_get_string(const CONF *conf, const char *group, const char *name); |
160 | int NCONF_get_number_e(const CONF *conf, const char *group, const char *name, | 158 | int NCONF_get_number_e(const CONF *conf, const char *group, const char *name, |
161 | long *result); | 159 | long *result); |
162 | int NCONF_dump_fp(const CONF *conf, FILE *out); | ||
163 | int 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 | ||