summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMscVZoltan <141750063+MscVZoltan@users.noreply.github.com>2023-08-09 08:43:40 +0200
committerTomas Mraz <tomas@openssl.org>2023-08-10 13:26:51 +0200
commit420a0874db8a6b0070d4820e81e82bf48412d7da (patch)
tree985ad0686d99554f0776b136128e364b339a63b9 /include
parent13342efbb9e16ec8f97b1ac5ab4aa2b3b3490596 (diff)
Don't use C++ reserved word template for function arguments
CLA: trivial Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21692)
Diffstat (limited to 'include')
-rw-r--r--include/crypto/evp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/crypto/evp.h b/include/crypto/evp.h
index 560a2898e9..566b7889db 100644
--- a/include/crypto/evp.h
+++ b/include/crypto/evp.h
@@ -812,7 +812,7 @@ int evp_keymgmt_set_params(const EVP_KEYMGMT *keymgmt,
void *evp_keymgmt_gen_init(const EVP_KEYMGMT *keymgmt, int selection,
const OSSL_PARAM params[]);
int evp_keymgmt_gen_set_template(const EVP_KEYMGMT *keymgmt, void *genctx,
- void *template);
+ void *templ);
int evp_keymgmt_gen_set_params(const EVP_KEYMGMT *keymgmt, void *genctx,
const OSSL_PARAM params[]);
void *evp_keymgmt_gen(const EVP_KEYMGMT *keymgmt, void *genctx,