diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2012-04-09 15:19:54 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-06-11 19:00:29 +0200 |
commit | 1f635608bb3c870977babc1a5d707937a7470134 (patch) | |
tree | 2b76e3989cd862b9adeb20a2746fecd6ae644825 /lib | |
parent | 9c94236e6cc078a0dc5a78b6e2fefc1403e5375e (diff) |
http: Replaced specific SSL libraries list in https_getsock fallback
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/http.c b/lib/http.c index a13989417..2726165bf 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1398,8 +1398,7 @@ static int https_getsock(struct connectdata *conn, return CURLE_OK; } #else -#if defined(USE_NSS) || defined(USE_QSOSSL) || \ - defined(USE_POLARSSL) || defined(USE_AXTLS) || defined(USE_CYASSL) +#ifdef USE_SSL static int https_getsock(struct connectdata *conn, curl_socket_t *socks, int numsocks) @@ -1409,7 +1408,7 @@ static int https_getsock(struct connectdata *conn, (void)numsocks; return GETSOCK_BLANK; } -#endif /* USE_AXTLS || USE_POLARSSL || USE_QSOSSL || USE_NSS */ +#endif /* USE_SSL */ #endif /* USE_SSLEAY || USE_GNUTLS */ /* |