From 5c809178c2753e08c7c02081ea4e0c424e87ba30 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 4 Oct 2011 16:33:07 +0200 Subject: [PATCH] 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 --- lib/share.h | 2 -- 1 file changed, 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; };