mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
Fix up issue on AIX caused by broken compiler handling of macro expansion
Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12812)
This commit is contained in:
parent
b7a8fb52a9
commit
ce43db7a3f
@ -87,8 +87,8 @@ static const OSSL_ALGORITHM base_decoder[] = {
|
||||
#undef DECODER
|
||||
|
||||
static const OSSL_ALGORITHM base_store[] = {
|
||||
#define STORE(name, fips, func_table) \
|
||||
{ name, "provider=base,fips=" fips, (func_table) },
|
||||
#define STORE(name, _fips, func_table) \
|
||||
{ name, "provider=base,fips=" _fips, (func_table) },
|
||||
|
||||
#include "stores.inc"
|
||||
{ NULL, NULL, NULL }
|
||||
|
@ -434,8 +434,8 @@ static const OSSL_ALGORITHM deflt_decoder[] = {
|
||||
#undef DECODER
|
||||
|
||||
static const OSSL_ALGORITHM deflt_store[] = {
|
||||
#define STORE(name, fips, func_table) \
|
||||
{ name, "provider=default,fips=" fips, (func_table) },
|
||||
#define STORE(name, _fips, func_table) \
|
||||
{ name, "provider=default,fips=" _fips, (func_table) },
|
||||
|
||||
#include "stores.inc"
|
||||
{ NULL, NULL, NULL }
|
||||
|
Loading…
x
Reference in New Issue
Block a user