diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2024-07-14 14:32:46 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2024-07-14 14:32:46 +0000 |
commit | 3ad96894862cc0132db67576c6e262d1e589b9d8 (patch) | |
tree | badc9f3f2dff23c8e5863d7cc5ff4ad60376186a /lib/libcrypto/objects | |
parent | b1d0c168e4768c332372575db73b18da929caad1 (diff) |
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 'lib/libcrypto/objects')
-rw-r--r-- | lib/libcrypto/objects/obj_dat.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libcrypto/objects/obj_dat.c b/lib/libcrypto/objects/obj_dat.c index 1ac854449cd..53ae83784fa 100644 --- a/lib/libcrypto/objects/obj_dat.c +++ b/lib/libcrypto/objects/obj_dat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: obj_dat.c,v 1.90 2024/05/08 16:35:05 tb Exp $ */ +/* $OpenBSD: obj_dat.c,v 1.91 2024/07/14 14:32:45 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -71,7 +71,6 @@ #include <openssl/objects.h> #include "asn1_local.h" -#include "lhash_local.h" /* obj_dat.h is generated from objects.h by obj_dat.pl */ #include "obj_dat.h" |