diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-01-14 08:52:06 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-01-14 08:52:06 +0000 |
commit | 6b1b3d2a2dee6d59ac05b22778a68fe71c166a52 (patch) | |
tree | ac57442e6c4570ff8fc91c539ea4790838be5cfe /lib/libcrypto | |
parent | 8a8433a89ecee54676a1c2e730b777e7f0cf41c1 (diff) |
Remove check_defer and obj_cleanup_defer from public visibility
ok inoguchi jsing
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/objects/objects.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/objects/objects.h b/lib/libcrypto/objects/objects.h index 3ed792bb348..5f76cf32891 100644 --- a/lib/libcrypto/objects/objects.h +++ b/lib/libcrypto/objects/objects.h @@ -1,4 +1,4 @@ -/* $OpenBSD: objects.h,v 1.15 2022/01/14 07:49:49 tb Exp $ */ +/* $OpenBSD: objects.h,v 1.16 2022/01/14 08:52:05 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1113,8 +1113,10 @@ int OBJ_find_sigid_by_algs(int *psignid, int dig_nid, int pkey_nid); int OBJ_add_sigid(int signid, int dig_id, int pkey_id); void OBJ_sigid_free(void); +#if defined(LIBRESSL_CRYPTO_INTERNAL) extern int obj_cleanup_defer; void check_defer(int nid); +#endif /* BEGIN ERROR CODES */ /* The following lines are auto generated by the script mkerr.pl. Any changes |