Unexport CONF_set_nconf()
authortb <tb@openbsd.org>
Sat, 31 Aug 2024 09:53:02 +0000 (09:53 +0000)
committertb <tb@openbsd.org>
Sat, 31 Aug 2024 09:53:02 +0000 (09:53 +0000)
This translation device from old to new conf guts will need to stay
for a while. However, it's only needed internally.

ok beck jsing

lib/libcrypto/conf/conf.h
lib/libcrypto/conf/conf_local.h
lib/libcrypto/hidden/openssl/conf.h

index 5796ee2..b7df24e 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.h,v 1.25 2024/08/31 09:50:52 tb Exp $ */
+/* $OpenBSD: conf.h,v 1.26 2024/08/31 09:53:02 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -104,8 +104,6 @@ typedef void conf_finish_func(CONF_IMODULE *md);
 #define CONF_MFLAGS_IGNORE_MISSING_FILE        0x10
 #define CONF_MFLAGS_DEFAULT_SECTION    0x20
 
-void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash);
-
 void OPENSSL_config(const char *config_name);
 void OPENSSL_no_config(void);
 
index 035f957..2933240 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf_local.h,v 1.5 2024/08/31 09:44:00 tb Exp $ */
+/* $OpenBSD: conf_local.h,v 1.6 2024/08/31 09:53:02 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -92,6 +92,8 @@ void CONF_module_set_usr_data(CONF_MODULE *pmod, void *usr_data);
 int CONF_parse_list(const char *list, int sep, int nospc,
     int (*list_cb)(const char *elem, int len, void *usr), void *arg);
 
+void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash);
+
 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
index adb9b38..29b49e9 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.h,v 1.7 2024/08/31 09:50:52 tb Exp $ */
+/* $OpenBSD: conf.h,v 1.8 2024/08/31 09:53:02 tb Exp $ */
 /*
  * Copyright (c) 2024 Bob Beck <beck@openbsd.org>
  *
@@ -25,7 +25,6 @@
 #endif
 #include "crypto_namespace.h"
 
-LCRYPTO_USED(CONF_set_nconf);
 LCRYPTO_USED(OPENSSL_config);
 LCRYPTO_USED(OPENSSL_no_config);
 LCRYPTO_USED(NCONF_new);