mirror of
https://github.com/curl/curl.git
synced 2026-08-02 16:10:29 +03:00
openssl: adapt to 3.0.0, OpenSSL_version_num() is deprecated
OpenSSL_version() replaces OpenSSL_version_num() Closes #3462
This commit is contained in:
parent
52e27fe9c6
commit
cf8c70594f
2 changed files with 11 additions and 4 deletions
|
|
@ -5,7 +5,7 @@
|
|||
* | (__| |_| | _ <| |___
|
||||
* \___|\___/|_| \_\_____|
|
||||
*
|
||||
* Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
*
|
||||
* This software is licensed as described in the file COPYING, which
|
||||
* you should have received as part of this distribution. The terms
|
||||
|
|
@ -3774,7 +3774,12 @@ static size_t Curl_ossl_version(char *buffer, size_t size)
|
|||
{
|
||||
#ifdef OPENSSL_IS_BORINGSSL
|
||||
return msnprintf(buffer, size, OSSL_PACKAGE);
|
||||
#else /* OPENSSL_IS_BORINGSSL */
|
||||
#elif defined(HAVE_OPENSSL_VERSION) && defined(OPENSSL_VERSION_STRING)
|
||||
return msnprintf(buffer, size, "%s/%s",
|
||||
OSSL_PACKAGE, OpenSSL_version(OPENSSL_VERSION_STRING));
|
||||
#else
|
||||
/* not BoringSSL and not using OpenSSL_version */
|
||||
|
||||
char sub[3];
|
||||
unsigned long ssleay_value;
|
||||
sub[2]='\0';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue