Skip to content

Commit

Permalink
I think this is the right fix for other non-OpenSSL libs, based on th…
Browse files Browse the repository at this point in the history
…e NSS fix

from the other day. It is time to setup the internal SSL libs and treat them
with a "handler" struct similar to how we deal with the protocols these days...
  • Loading branch information
bagder committed Nov 19, 2007
1 parent 968e943 commit 0561bff
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/sslgen.c
Expand Up @@ -248,11 +248,13 @@ Curl_ssl_connect_nonblocking(struct connectdata *conn, int sockindex,
#else
#ifdef USE_QSOSSL
*done = TRUE; /* fallback to BLOCKING */
conn->ssl[sockindex].use = TRUE;
return Curl_qsossl_connect(conn, sockindex);
#else
/* not implemented!
fallback to BLOCKING call. */
*done = TRUE;
conn->ssl[sockindex].use = TRUE;
return Curl_ssl_connect(conn, sockindex);
#endif /* USE_QSOSSL */
#endif /* USE_NSS */
Expand Down

0 comments on commit 0561bff

Please sign in to comment.