summaryrefslogtreecommitdiffstats
path: root/crypto/err
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2021-06-23 14:17:59 +1000
committerPauli <pauli@openssl.org>2021-06-24 15:51:48 +1000
commite3c507797acc6049f5791062cd9b2fa5fe0aa824 (patch)
tree81e01ef57c89aed4dccae92152424fa0b801dcf7 /crypto/err
parent0218bcdd3feab456135207c140998305df73ab7b (diff)
err: add unable to get lock errors
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15871)
Diffstat (limited to 'crypto/err')
-rw-r--r--crypto/err/err.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/err/err.c b/crypto/err/err.c
index 9b1a15d5bd..60a9b02d19 100644
--- a/crypto/err/err.c
+++ b/crypto/err/err.c
@@ -127,6 +127,8 @@ static ERR_STRING_DATA ERR_str_reasons[] = {
{ERR_R_FETCH_FAILED, "fetch failed"},
{ERR_R_INVALID_PROPERTY_DEFINITION, "invalid property definition"},
+ {ERR_R_UNABLE_TO_GET_READ_LOCK, "unable to get read lock"},
+ {ERR_R_UNABLE_TO_GET_WRITE_LOCK, "unable to get write lock"},
{0, NULL},
};
#endif