The branch OpenSSL_1_1_1-stable has been updated via 79ef18759a4f89af0b1e015766a73fa289095673 (commit) from 9b06ebb1edfddffea083ba36090af7eb7cad207b (commit)
- Log ----------------------------------------------------------------- commit 79ef18759a4f89af0b1e015766a73fa289095673 Author: Richard Levitte <levi...@openssl.org> Date: Fri Nov 19 07:37:29 2021 +0100 ERR: Add a missing common reason string There was no string present for ERR_R_PASSED_INVALID_ARGUMENT Reviewed-by: David von Oheimb <david.von.ohe...@siemens.com> (Merged from https://github.com/openssl/openssl/pull/17069) ----------------------------------------------------------------------- Summary of changes: crypto/err/err.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/err/err.c b/crypto/err/err.c index 1372d52f80..70a4cd402c 100644 --- a/crypto/err/err.c +++ b/crypto/err/err.c @@ -129,6 +129,7 @@ static ERR_STRING_DATA ERR_str_reasons[] = { {ERR_R_INTERNAL_ERROR, "internal error"}, {ERR_R_DISABLED, "called a function that was disabled at compile-time"}, {ERR_R_INIT_FAIL, "init fail"}, + {ERR_R_PASSED_INVALID_ARGUMENT, "passed invalid argument"}, {ERR_R_OPERATION_FAIL, "operation fail"}, {0, NULL},