Commit 5c809178 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

struct Curl_share: provide sslsession unconditionally

It makes much nicer and less convuluted code everywhere if this struct
member is always present even when libcurl is built without SSL support.

This reverts parts of commit 15e3e451
parent fa77f54a
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -50,9 +50,7 @@ struct Curl_share {
  struct CookieInfo *cookies;
#endif

#ifdef USE_SSL
  struct curl_ssl_session *sslsession;
#endif
  unsigned int nsslsession;
};