Runchecker fix for the no-autoerrinit build

In this case, there was a slight different error output format that wasn't
being accounted for in the error test.

Fixes #14961

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14976)
This commit is contained in:
Pauli 2021-04-22 11:04:28 +10:00 committed by Tomas Mraz
parent 9c11e8ec1f
commit 582043dae7

View File

@ -74,8 +74,12 @@ static int test_print_error_format(void)
goto err;
}
# ifndef OPENSSL_NO_ERR
# if !defined(OPENSSL_NO_ERR)
# if defined(OPENSSL_NO_AUTOERRINIT)
lib = "lib(2)";
# else
lib = "system library";
# endif
reason = strerror(syserr);
# else
lib = "lib(2)";