diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-28 10:21:02 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-28 10:21:02 +0000 |
commit | 8361aacad492dc8496169a89d4bb67c60a1f493f (patch) | |
tree | 6280bb7409213839bbecceb28a659e945cca272b /lib/libcrypto/hidden/openssl | |
parent | e0756108b143dbdf93bde189790801c3e5a8949a (diff) |
Remove ERR_{get,set}_implementation()
Much like ex_data, applications can make the library use their own error
stack implementation. Well, except as of right now they no longer can.
ok jsing
Diffstat (limited to 'lib/libcrypto/hidden/openssl')
-rw-r--r-- | lib/libcrypto/hidden/openssl/err.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libcrypto/hidden/openssl/err.h b/lib/libcrypto/hidden/openssl/err.h index bc2a96644cd..c53feb89f4c 100644 --- a/lib/libcrypto/hidden/openssl/err.h +++ b/lib/libcrypto/hidden/openssl/err.h @@ -1,4 +1,4 @@ -/* $OpenBSD: err.h,v 1.2 2023/07/07 19:37:54 beck Exp $ */ +/* $OpenBSD: err.h,v 1.3 2023/07/28 10:21:01 tb Exp $ */ /* * Copyright (c) 2023 Bob Beck <beck@openbsd.org> * @@ -60,7 +60,5 @@ LCRYPTO_USED(ERR_release_err_state_table); LCRYPTO_USED(ERR_get_next_error_library); LCRYPTO_USED(ERR_set_mark); LCRYPTO_USED(ERR_pop_to_mark); -LCRYPTO_USED(ERR_get_implementation); -LCRYPTO_USED(ERR_set_implementation); #endif /* _LIBCRYPTO_ERR_H */ |