summaryrefslogtreecommitdiffstats
path: root/crypto/err/err_blocks.c
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2021-03-09 14:47:25 +1000
committerShane Lontis <shane.lontis@oracle.com>2021-03-18 17:52:38 +1000
commit78715dcc310e27a8c862ecdf3a956c1cfdc0f2c1 (patch)
tree80c1113c617fc8fce501c664acff7a94fcd0957d /crypto/err/err_blocks.c
parent6d7776892f571cb438563d65d5d252e0245cd57e (diff)
rename err_get_state_int() to ossl_err_get_state_int()
Partial fix for #12964 Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14473)
Diffstat (limited to 'crypto/err/err_blocks.c')
-rw-r--r--crypto/err/err_blocks.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/err/err_blocks.c b/crypto/err/err_blocks.c
index 20888e9576..0a2458f801 100644
--- a/crypto/err/err_blocks.c
+++ b/crypto/err/err_blocks.c
@@ -18,7 +18,7 @@ void ERR_new(void)
{
ERR_STATE *es;
- es = err_get_state_int();
+ es = ossl_err_get_state_int();
if (es == NULL)
return;
@@ -31,7 +31,7 @@ void ERR_set_debug(const char *file, int line, const char *func)
{
ERR_STATE *es;
- es = err_get_state_int();
+ es = ossl_err_get_state_int();
if (es == NULL)
return;
@@ -55,7 +55,7 @@ void ERR_vset_error(int lib, int reason, const char *fmt, va_list args)
unsigned long flags = 0;
size_t i;
- es = err_get_state_int();
+ es = ossl_err_get_state_int();
if (es == NULL)
return;
i = es->top;