From: Dr. David von Oheimb Date: Fri, 19 Nov 2021 10:12:09 +0000 (+0100) Subject: 02-test_errstr.t: print errorcodes in hex (rather than decimal) format X-Git-Tag: openssl-3.2.0-alpha1~3313 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7313323cc420e8dca2526578ae8a4a4d4d390be;p=thirdparty%2Fopenssl.git 02-test_errstr.t: print errorcodes in hex (rather than decimal) format Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/17056) --- diff --git a/test/recipes/02-test_errstr.t b/test/recipes/02-test_errstr.t index 9427601292d..396d2731761 100644 --- a/test/recipes/02-test_errstr.t +++ b/test/recipes/02-test_errstr.t @@ -139,7 +139,7 @@ sub match_opensslerr_reason { $reason =~ s|\R$||; $reason = ( split_error($reason) )[3]; - return match_any($reason, $errcode, @strings); + return match_any($reason, $errcode_hex, @strings); } sub match_syserr_reason {