From: Matt Caswell Date: Thu, 11 Oct 2018 10:59:57 +0000 (+0100) Subject: Fix a typo in a macro X-Git-Tag: openssl-3.0.0-alpha1~3050 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=990fe909949a58398b3a0cbbdc52b9bbb9cefaa0;p=oweals%2Fopenssl.git Fix a typo in a macro Fixes #7385 Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/7385) --- diff --git a/include/openssl/rsa.h b/include/openssl/rsa.h index a38ba12f1e..cdce1264eb 100644 --- a/include/openssl/rsa.h +++ b/include/openssl/rsa.h @@ -160,7 +160,7 @@ extern "C" { # define EVP_PKEY_CTX_set_rsa_pss_keygen_md(ctx, md) \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA_PSS, \ - EVP_PKEY_OP_TYPE_KEYGEN, EVP_PKEY_CTRL_MD, \ + EVP_PKEY_OP_KEYGEN, EVP_PKEY_CTRL_MD, \ 0, (void *)(md)) # define EVP_PKEY_CTRL_RSA_PADDING (EVP_PKEY_ALG_CTRL + 1)