From 7bc1b816d4a2d19d13065555471cb6a4295d8897 Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Wed, 5 Mar 2025 10:45:05 +0100 Subject: [PATCH] pkey_ctx: Fix link to the corresponding OpenSSL function Signed-off-by: Jakub Jelen --- openssl/src/pkey_ctx.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssl/src/pkey_ctx.rs b/openssl/src/pkey_ctx.rs index f30f06973..47188111c 100644 --- a/openssl/src/pkey_ctx.rs +++ b/openssl/src/pkey_ctx.rs @@ -148,7 +148,7 @@ impl PkeyCtx { impl PkeyCtx<()> { /// Creates a new pkey context for the specified algorithm ID. - #[corresponds(EVP_PKEY_new_id)] + #[corresponds(EVP_PKEY_CTX_new_id)] #[inline] pub fn new_id(id: Id) -> Result { unsafe {