diff options
| author | tb <> | 2024-08-31 09:21:44 +0000 |
|---|---|---|
| committer | tb <> | 2024-08-31 09:21:44 +0000 |
| commit | 99f92d1f135e09a99ace18755bc48e1f954b46cb (patch) | |
| tree | 385ecf672229f7634b674c09baf02af1f1d0936b /src/lib/libcrypto/conf/conf_api.c | |
| parent | f725589730b88830cf4e7f19e9e69b38a87802d9 (diff) | |
| download | openbsd-99f92d1f135e09a99ace18755bc48e1f954b46cb.tar.gz openbsd-99f92d1f135e09a99ace18755bc48e1f954b46cb.tar.bz2 openbsd-99f92d1f135e09a99ace18755bc48e1f954b46cb.zip | |
Make CONF_METHOD opaque
Much of conf is designed in such a way that you really have to reach into
its structs. This one piece can be hidden. It might even be removed soon.
ok beck jsing
Diffstat (limited to 'src/lib/libcrypto/conf/conf_api.c')
| -rw-r--r-- | src/lib/libcrypto/conf/conf_api.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/conf/conf_api.c b/src/lib/libcrypto/conf/conf_api.c index a94e8c8be0..348c4ff744 100644 --- a/src/lib/libcrypto/conf/conf_api.c +++ b/src/lib/libcrypto/conf/conf_api.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: conf_api.c,v 1.19 2024/07/14 14:32:45 jsing Exp $ */ | 1 | /* $OpenBSD: conf_api.c,v 1.20 2024/08/31 09:21:44 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 | * |
| @@ -69,6 +69,8 @@ | |||
| 69 | #include <openssl/conf.h> | 69 | #include <openssl/conf.h> |
| 70 | #include <openssl/conf_api.h> | 70 | #include <openssl/conf_api.h> |
| 71 | 71 | ||
| 72 | #include "conf_local.h" | ||
| 73 | |||
| 72 | static void value_free_hash_doall_arg(CONF_VALUE *a, | 74 | static void value_free_hash_doall_arg(CONF_VALUE *a, |
| 73 | LHASH_OF(CONF_VALUE) *conf); | 75 | LHASH_OF(CONF_VALUE) *conf); |
| 74 | static void value_free_stack_doall(CONF_VALUE *a); | 76 | static void value_free_stack_doall(CONF_VALUE *a); |
