mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
Added zero termination, as the OpenSSL version string was written without
it!
This commit is contained in:
parent
16fe0c9be3
commit
37d7a198d5
@ -41,6 +41,7 @@ char *curl_version(void)
|
||||
#if (SSLEAY_VERSION_NUMBER >= 0x906000)
|
||||
{
|
||||
char sub[2];
|
||||
sub[1]=0;
|
||||
if(SSLEAY_VERSION_NUMBER&0xff0) {
|
||||
sub[0]=((SSLEAY_VERSION_NUMBER>>4)&0xff) + 'a' -1;
|
||||
}
|
||||
@ -63,6 +64,7 @@ char *curl_version(void)
|
||||
#else
|
||||
{
|
||||
char sub[2];
|
||||
sub[1]=0;
|
||||
if(SSLEAY_VERSION_NUMBER&0x0f) {
|
||||
sub[0]=(SSLEAY_VERSION_NUMBER&0x0f) + 'a' -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user