Commit 1f635608 authored by Marc Hoersken's avatar Marc Hoersken Committed by Daniel Stenberg
Browse files

http: Replaced specific SSL libraries list in https_getsock fallback

parent 9c94236e
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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 */

/*