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:
Jon Spillett 2020-09-08 10:33:28 +10:00 committed by Shane Lontis
parent b7a8fb52a9
commit ce43db7a3f
2 changed files with 4 additions and 4 deletions

View File

@ -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 }

View File

@ -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 }