]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
http: Replaced specific SSL libraries list in https_getsock fallback
authorMarc Hoersken <info@marc-hoersken.de>
Mon, 9 Apr 2012 13:19:54 +0000 (15:19 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 11 Jun 2012 17:00:29 +0000 (19:00 +0200)
lib/http.c

index a13989417ceb612c7e05c24a398ed831c849599b..2726165bfb37e4b400bbb41103d52a2a88c7be85 100644 (file)
@@ -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 */
 
 /*