From: Daniel Stenberg Date: Mon, 4 Aug 2014 21:54:44 +0000 (+0200) Subject: Curl_ossl_version: detect and show libressl X-Git-Tag: curl-7_38_0~145 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7efff86639dbc60820d545c8bf41655e9720e4c0;p=curl Curl_ossl_version: detect and show libressl LibreSSL is otherwise OpenSSL API compliant (so far) --- diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 2ff425e0d..03717249f 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -2830,8 +2830,13 @@ size_t Curl_ossl_version(char *buffer, size_t size) sub[0]='\0'; } - return snprintf(buffer, size, "OpenSSL/%lx.%lx.%lx%s", - (ssleay_value>>28)&0xf, + return snprintf(buffer, size, "%s/%lx.%lx.%lx%s", +#ifdef LIBRESSL_VERSION_NUMBER + "LibreSSL" +#else + "OpenSSL" +#endif + , (ssleay_value>>28)&0xf, (ssleay_value>>20)&0xff, (ssleay_value>>12)&0xff, sub);