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 15e3e45170
This commit is contained in:
Daniel Stenberg 2011-10-04 16:33:07 +02:00
parent fa77f54a03
commit 5c809178c2
1 changed files with 0 additions and 2 deletions

View File

@ -50,9 +50,7 @@ struct Curl_share {
struct CookieInfo *cookies;
#endif
#ifdef USE_SSL
struct curl_ssl_session *sslsession;
#endif
unsigned int nsslsession;
};