mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-10 19:45:15 +00:00
Merge pull request #3297 from tkelman/patch-2
Fix undefined reference with old versions of openssl
This commit is contained in:
commit
a1687f7855
@ -324,7 +324,9 @@ int openssl_connect(git_stream *stream)
|
||||
|
||||
SSL_set_bio(st->ssl, bio, bio);
|
||||
/* specify the host in case SNI is needed */
|
||||
#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
|
||||
SSL_set_tlsext_host_name(st->ssl, st->host);
|
||||
#endif
|
||||
|
||||
if ((ret = SSL_connect(st->ssl)) <= 0)
|
||||
return ssl_set_error(st->ssl, ret);
|
||||
|
Loading…
Reference in New Issue
Block a user