summaryrefslogtreecommitdiff
path: root/lib/libcrypto/hidden/openssl
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2024-03-02 10:30:49 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2024-03-02 10:30:49 +0000
commitf051facf5b9a99294e6daba07a9bad849d38eced (patch)
treede906b53dc51745ff4ba19438a5fd6c3d0c24b0b /lib/libcrypto/hidden/openssl
parent40c9386a2fceefbc89de9eb3f5ddcf6c1130d8d4 (diff)
Remove ERR_get_state
The ERR_STATE struct is an unused implementation detail of the horrific error stack code. It is the last public consumer of CRYPTO_THREAD internals. Make this and its accessor internal so we can make the CRYPTO_THREAD struct opaque. ok jsing
Diffstat (limited to 'lib/libcrypto/hidden/openssl')
-rw-r--r--lib/libcrypto/hidden/openssl/err.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libcrypto/hidden/openssl/err.h b/lib/libcrypto/hidden/openssl/err.h
index 036ead8c089..08f97e1c5db 100644
--- a/lib/libcrypto/hidden/openssl/err.h
+++ b/lib/libcrypto/hidden/openssl/err.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: err.h,v 1.4 2023/07/28 10:23:19 tb Exp $ */
+/* $OpenBSD: err.h,v 1.5 2024/03/02 10:30:48 tb Exp $ */
/*
* Copyright (c) 2023 Bob Beck <beck@openbsd.org>
*
@@ -53,7 +53,6 @@ LCRYPTO_USED(ERR_load_crypto_strings);
LCRYPTO_USED(ERR_free_strings);
LCRYPTO_USED(ERR_remove_thread_state);
LCRYPTO_USED(ERR_remove_state);
-LCRYPTO_USED(ERR_get_state);
LCRYPTO_USED(ERR_get_next_error_library);
LCRYPTO_USED(ERR_set_mark);
LCRYPTO_USED(ERR_pop_to_mark);