Merge pull request #3297 from tkelman/patch-2

Fix undefined reference with old versions of openssl
This commit is contained in:
Carlos Martín Nieto 2015-07-10 19:07:41 +02:00
commit a1687f7855

View File

@ -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);