From e815d3015eba4e54f414636b8907e15e249d72cf Mon Sep 17 00:00:00 2001 From: Geoff Thorpe Date: Wed, 5 Sep 2001 17:02:35 +0000 Subject: [PATCH] Change DH_up() -> DH_up_ref() --- crypto/evp/p_lib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/evp/p_lib.c b/crypto/evp/p_lib.c index 04f75a5a24..215b94292a 100644 --- a/crypto/evp/p_lib.c +++ b/crypto/evp/p_lib.c @@ -252,7 +252,7 @@ int EVP_PKEY_set1_DH(EVP_PKEY *pkey, DH *key) { int ret = EVP_PKEY_assign_DH(pkey, key); if(ret) - DH_up(key); + DH_up_ref(key); return ret; } @@ -262,7 +262,7 @@ DH *EVP_PKEY_get1_DH(EVP_PKEY *pkey) EVPerr(EVP_F_EVP_PKEY_GET1_DH, EVP_R_EXPECTING_A_DH_KEY); return NULL; } - DH_up(pkey->pkey.dh); + DH_up_ref(pkey->pkey.dh); return pkey->pkey.dh; } #endif -- 2.25.1