summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/conf/conf.h
diff options
context:
space:
mode:
authortb <>2024-08-31 09:44:00 +0000
committertb <>2024-08-31 09:44:00 +0000
commit646547a8a28c7b6931751a2ab064fd70d5d8cf92 (patch)
tree97b3476cc61b0265c07f9bef8ee4470ff135c850 /src/lib/libcrypto/conf/conf.h
parentfc84d1fea737eb16413bd12216cd96db95b290c2 (diff)
downloadopenbsd-646547a8a28c7b6931751a2ab064fd70d5d8cf92.tar.gz
openbsd-646547a8a28c7b6931751a2ab064fd70d5d8cf92.tar.bz2
openbsd-646547a8a28c7b6931751a2ab064fd70d5d8cf92.zip
Unexport NCONF_default
The only project I'm aware of that ever used this was rust-openssl and they did so for no good reason. So remove this API, the crate's code is already adjusted accordingly. ok beck jsing
Diffstat (limited to 'src/lib/libcrypto/conf/conf.h')
-rw-r--r--src/lib/libcrypto/conf/conf.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/conf/conf.h b/src/lib/libcrypto/conf/conf.h
index ebffab1401..28b5f9d583 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.23 2024/08/31 09:41:53 tb Exp $ */ 1/* $OpenBSD: conf.h,v 1.24 2024/08/31 09:44: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,7 +131,6 @@ struct conf_st {
131}; 131};
132 132
133CONF *NCONF_new(const CONF_METHOD *meth); 133CONF *NCONF_new(const CONF_METHOD *meth);
134const CONF_METHOD *NCONF_default(void);
135void NCONF_free(CONF *conf); 134void NCONF_free(CONF *conf);
136 135
137int NCONF_load(CONF *conf, const char *file, long *eline); 136int NCONF_load(CONF *conf, const char *file, long *eline);