cyassl: use new library version macro when available

This commit is contained in:
Dan Fandrich 2015-03-20 23:49:53 +01:00
parent 1f651d1d4d
commit 6779c50e26
1 changed files with 3 additions and 1 deletions

View File

@ -448,7 +448,9 @@ void Curl_cyassl_session_free(void *ptr)
size_t Curl_cyassl_version(char *buffer, size_t size)
{
#ifdef CYASSL_VERSION
#if defined(LIBCYASSL_VERSION_STRING)
return snprintf(buffer, size, "CyaSSL/%s", LIBCYASSL_VERSION_STRING);
#elif defined(CYASSL_VERSION)
return snprintf(buffer, size, "CyaSSL/%s", CYASSL_VERSION);
#else
return snprintf(buffer, size, "CyaSSL/%s", "<1.8.8");