aboutsummaryrefslogtreecommitdiff
path: root/lib/share.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2011-10-04 16:33:07 +0200
committerDaniel Stenberg <daniel@haxx.se>2011-10-04 16:33:07 +0200
commit5c809178c2753e08c7c02081ea4e0c424e87ba30 (patch)
tree18e3b51e11df7f980872b9b4a3a351694cd8e773 /lib/share.h
parentfa77f54a039daec9f28cddb896d5132f3df5c27d (diff)
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 15e3e451702396e
Diffstat (limited to 'lib/share.h')
-rw-r--r--lib/share.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/share.h b/lib/share.h
index cb5c6c7f3..c9546567d 100644
--- a/lib/share.h
+++ b/lib/share.h
@@ -50,9 +50,7 @@ struct Curl_share {
struct CookieInfo *cookies;
#endif
-#ifdef USE_SSL
struct curl_ssl_session *sslsession;
-#endif
unsigned int nsslsession;
};