diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/conf/conf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/conf/conf.h b/src/lib/libcrypto/conf/conf.h index f5c449e547..7ddb33ccd4 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.21 2024/08/31 09:36:38 tb Exp $ */ | 1 | /* $OpenBSD: conf.h,v 1.22 2024/08/31 09:39:31 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 | * |
@@ -126,12 +126,12 @@ void OPENSSL_no_config(void); | |||
126 | If that wasn't the case, the above functions would have been replaced */ | 126 | If that wasn't the case, the above functions would have been replaced */ |
127 | 127 | ||
128 | struct conf_st { | 128 | struct conf_st { |
129 | CONF_METHOD *meth; | 129 | const CONF_METHOD *meth; |
130 | LHASH_OF(CONF_VALUE) *data; | 130 | LHASH_OF(CONF_VALUE) *data; |
131 | }; | 131 | }; |
132 | 132 | ||
133 | CONF *NCONF_new(CONF_METHOD *meth); | 133 | CONF *NCONF_new(const CONF_METHOD *meth); |
134 | CONF_METHOD *NCONF_default(void); | 134 | const CONF_METHOD *NCONF_default(void); |
135 | void NCONF_free(CONF *conf); | 135 | void NCONF_free(CONF *conf); |
136 | void NCONF_free_data(CONF *conf); | 136 | void NCONF_free_data(CONF *conf); |
137 | 137 | ||