summaryrefslogtreecommitdiffstats
path: root/providers/defltprov.c
diff options
context:
space:
mode:
authorJon Spillett <jon.spillett@oracle.com>2020-09-02 13:13:44 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-09-03 16:40:39 +1000
commitb48ca22a56553f285d91da0ac9399fd5efd54589 (patch)
tree8531dbc65556c51cf8ddfbec5fc7241c226907a7 /providers/defltprov.c
parent6f04bcc7e3b258f4a075279515881b13bd3fd04c (diff)
Avoid AIX compiler issue by making the macro argument names not match any substring
Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12767)
Diffstat (limited to 'providers/defltprov.c')
-rw-r--r--providers/defltprov.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/providers/defltprov.c b/providers/defltprov.c
index 943bdc6136..855497be06 100644
--- a/providers/defltprov.c
+++ b/providers/defltprov.c
@@ -412,9 +412,9 @@ static const OSSL_ALGORITHM deflt_keymgmt[] = {
};
static const OSSL_ALGORITHM deflt_encoder[] = {
-#define ENCODER(name, fips, format, type, func_table) \
+#define ENCODER(name, _fips, _format, _type, func_table) \
{ name, \
- "provider=default,fips=" fips ",format=" format ",type=" type, \
+ "provider=default,fips=" _fips ",format=" _format ",type=" _type, \
(func_table) }
#include "encoders.inc"
@@ -423,9 +423,9 @@ static const OSSL_ALGORITHM deflt_encoder[] = {
#undef ENCODER
static const OSSL_ALGORITHM deflt_decoder[] = {
-#define DECODER(name, fips, input, func_table) \
+#define DECODER(name, _fips, _input, func_table) \
{ name, \
- "provider=default,fips=" fips ",input=" input, \
+ "provider=default,fips=" _fips ",input=" _input, \
(func_table) }
#include "decoders.inc"