diff options
author | jsing <> | 2024-07-14 14:32:45 +0000 |
---|---|---|
committer | jsing <> | 2024-07-14 14:32:45 +0000 |
commit | 1ae23ffb91ba41cf24c39b874e0d6f164063cfe3 (patch) | |
tree | be3db2d41eeefc4911bb452b4bdad674ec31828b /src/lib/libcrypto/conf/conf_api.c | |
parent | 73603f81b8f31e21cfa961d3e7492cd914fb634c (diff) | |
download | openbsd-1ae23ffb91ba41cf24c39b874e0d6f164063cfe3.tar.gz openbsd-1ae23ffb91ba41cf24c39b874e0d6f164063cfe3.tar.bz2 openbsd-1ae23ffb91ba41cf24c39b874e0d6f164063cfe3.zip |
Remove lhash_local.h.
lhash_local.h was previously needed since conf/conf_api.c and
objects/obj_dat.c were fiddling with lhash internals when deleting via a
callback. Since we no longer need to do that, inline the structs in
lhash.c and remove the header.
ok tb@
Diffstat (limited to 'src/lib/libcrypto/conf/conf_api.c')
-rw-r--r-- | src/lib/libcrypto/conf/conf_api.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/conf/conf_api.c b/src/lib/libcrypto/conf/conf_api.c index b78bd50c2c..a94e8c8be0 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.18 2024/03/02 11:11:11 tb Exp $ */ | 1 | /* $OpenBSD: conf_api.c,v 1.19 2024/07/14 14:32:45 jsing 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,8 +69,6 @@ | |||
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 "lhash_local.h" | ||
73 | |||
74 | static void value_free_hash_doall_arg(CONF_VALUE *a, | 72 | static void value_free_hash_doall_arg(CONF_VALUE *a, |
75 | LHASH_OF(CONF_VALUE) *conf); | 73 | LHASH_OF(CONF_VALUE) *conf); |
76 | static void value_free_stack_doall(CONF_VALUE *a); | 74 | static void value_free_stack_doall(CONF_VALUE *a); |