summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/man/CONF_modules_load_file.311
1 files changed, 4 insertions, 7 deletions
diff --git a/src/lib/libcrypto/man/CONF_modules_load_file.3 b/src/lib/libcrypto/man/CONF_modules_load_file.3
index 964473d497..f7efba854f 100644
--- a/src/lib/libcrypto/man/CONF_modules_load_file.3
+++ b/src/lib/libcrypto/man/CONF_modules_load_file.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: CONF_modules_load_file.3,v 1.11 2023/07/21 10:46:54 tb Exp $ 1.\" $OpenBSD: CONF_modules_load_file.3,v 1.12 2023/11/19 10:27:49 tb Exp $
2.\" full merge up to: e9b77246 Jan 20 19:58:49 2017 +0100 2.\" full merge up to: e9b77246 Jan 20 19:58:49 2017 +0100
3.\" selective merge up to: d090fc00 Feb 26 13:11:10 2019 +0800 3.\" selective merge up to: d090fc00 Feb 26 13:11:10 2019 +0800
4.\" 4.\"
@@ -66,7 +66,7 @@
66.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 66.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
67.\" OF THE POSSIBILITY OF SUCH DAMAGE. 67.\" OF THE POSSIBILITY OF SUCH DAMAGE.
68.\" 68.\"
69.Dd $Mdocdate: July 21 2023 $ 69.Dd $Mdocdate: November 19 2023 $
70.Dt CONF_MODULES_LOAD_FILE 3 70.Dt CONF_MODULES_LOAD_FILE 3
71.Os 71.Os
72.Sh NAME 72.Sh NAME
@@ -222,7 +222,6 @@ Load custom configuration file and section instead of the standard one,
222only print warnings on error, missing configuration file ignored: 222only print warnings on error, missing configuration file ignored:
223.Bd -literal 223.Bd -literal
224OPENSSL_no_config(); 224OPENSSL_no_config();
225ENGINE_load_builtin_engines();
226OPENSSL_load_builtin_modules(); 225OPENSSL_load_builtin_modules();
227if (CONF_modules_load_file("/something/app.cnf", "myapp", 226if (CONF_modules_load_file("/something/app.cnf", "myapp",
228 CONF_MFLAGS_IGNORE_MISSING_FILE) <= 0) { 227 CONF_MFLAGS_IGNORE_MISSING_FILE) <= 0) {
@@ -235,11 +234,9 @@ In the previous example, the call to
235.Xr OPENSSL_no_config 3 234.Xr OPENSSL_no_config 3
236is required first to suppress automatic loading 235is required first to suppress automatic loading
237of the standard configuration file, and the calls to 236of the standard configuration file, and the calls to
238.Xr ENGINE_load_builtin_engines 3
239and
240.Xr OPENSSL_load_builtin_modules 3 237.Xr OPENSSL_load_builtin_modules 3
241are needed so that the configuration of builtin modules and engines 238is needed so that the configuration of builtin modules
242is also loaded in addition to the configuration of 239is loaded in addition to the configuration of
243.Qq myapp . 240.Qq myapp .
244.Pp 241.Pp
245Load and parse configuration file manually, custom error handling: 242Load and parse configuration file manually, custom error handling: