mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
http: Replaced specific SSL libraries list in https_getsock fallback
This commit is contained in:
parent
9c94236e6c
commit
1f635608bb
@ -1398,8 +1398,7 @@ static int https_getsock(struct connectdata *conn,
|
|||||||
return CURLE_OK;
|
return CURLE_OK;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
#if defined(USE_NSS) || defined(USE_QSOSSL) || \
|
#ifdef USE_SSL
|
||||||
defined(USE_POLARSSL) || defined(USE_AXTLS) || defined(USE_CYASSL)
|
|
||||||
static int https_getsock(struct connectdata *conn,
|
static int https_getsock(struct connectdata *conn,
|
||||||
curl_socket_t *socks,
|
curl_socket_t *socks,
|
||||||
int numsocks)
|
int numsocks)
|
||||||
@ -1409,7 +1408,7 @@ static int https_getsock(struct connectdata *conn,
|
|||||||
(void)numsocks;
|
(void)numsocks;
|
||||||
return GETSOCK_BLANK;
|
return GETSOCK_BLANK;
|
||||||
}
|
}
|
||||||
#endif /* USE_AXTLS || USE_POLARSSL || USE_QSOSSL || USE_NSS */
|
#endif /* USE_SSL */
|
||||||
#endif /* USE_SSLEAY || USE_GNUTLS */
|
#endif /* USE_SSLEAY || USE_GNUTLS */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user