summaryrefslogtreecommitdiffstats
path: root/providers/defltprov.c
diff options
context:
space:
mode:
authorJon Spillett <jon.spillett@oracle.com>2020-09-08 10:33:28 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-09-09 19:08:59 +1000
commitce43db7a3fcd18866385a4552f5e4a83adfc0979 (patch)
tree2f78b0dc463289b3f67a4e98397e39e86fc3cd64 /providers/defltprov.c
parentb7a8fb52a95d606e073a6f232262cc121659a1fe (diff)
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)
Diffstat (limited to 'providers/defltprov.c')
-rw-r--r--providers/defltprov.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/providers/defltprov.c b/providers/defltprov.c
index beaf60bb1e..371d942f4a 100644
--- a/providers/defltprov.c
+++ b/providers/defltprov.c
@@ -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 }