diff options
author | Richard Levitte <levitte@openssl.org> | 2019-07-25 21:57:48 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-09-12 18:33:15 +0200 |
commit | 14e275e8fb736be4ea83441b630515f7be97d06b (patch) | |
tree | 8a0438dadaaf5bc625d513345f74ec43bf7e623d /crypto/err/err_blocks.c | |
parent | confdata.pm.in: New template for configdata.pm (diff) | |
download | openssl-14e275e8fb736be4ea83441b630515f7be97d06b.tar.xz openssl-14e275e8fb736be4ea83441b630515f7be97d06b.zip |
Deprecate the public definition of ERR_STATE
The intention is to make it opaque later on.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9462)
Diffstat (limited to 'crypto/err/err_blocks.c')
-rw-r--r-- | crypto/err/err_blocks.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/err/err_blocks.c b/crypto/err/err_blocks.c index cf1bb9708a..c2ff7c0823 100644 --- a/crypto/err/err_blocks.c +++ b/crypto/err/err_blocks.c @@ -7,6 +7,9 @@ * https://www.openssl.org/source/license.html */ +/* TODO: When ERR_STATE becomes opaque, this musts be removed */ +#define OSSL_FORCE_ERR_STATE + #include <string.h> #include <openssl/err.h> #include "err_locl.h" |