summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/conf/conf_def.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/conf/conf_def.c')
-rw-r--r--src/lib/libcrypto/conf/conf_def.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/conf/conf_def.c b/src/lib/libcrypto/conf/conf_def.c
index f2b2c9477b..dbd2e6a2eb 100644
--- a/src/lib/libcrypto/conf/conf_def.c
+++ b/src/lib/libcrypto/conf/conf_def.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: conf_def.c,v 1.33 2020/02/17 12:51:48 inoguchi Exp $ */ 1/* $OpenBSD: conf_def.c,v 1.34 2024/04/09 13:56:30 beck 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 *
@@ -122,12 +122,14 @@ NCONF_default(void)
122{ 122{
123 return &default_method; 123 return &default_method;
124} 124}
125LCRYPTO_ALIAS(NCONF_default);
125 126
126CONF_METHOD * 127CONF_METHOD *
127NCONF_WIN32(void) 128NCONF_WIN32(void)
128{ 129{
129 return &WIN32_method; 130 return &WIN32_method;
130} 131}
132LCRYPTO_ALIAS(NCONF_WIN32);
131 133
132static CONF * 134static CONF *
133def_create(CONF_METHOD *meth) 135def_create(CONF_METHOD *meth)