From 52e8237bfc66a2a8324dbb558c1f0704aa0f8c0e Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Fri, 23 Jun 2017 00:22:47 +0200 Subject: vtls: use the Curl_ssl struct to access all SSL backends' functionality This is the first step to unify the SSL backend handling. Now all the SSL backend-specific functionality is accessed via a global instance of the Curl_ssl struct. Signed-off-by: Johannes Schindelin --- lib/vtls/nss.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/vtls/nss.c') diff --git a/lib/vtls/nss.c b/lib/vtls/nss.c index d6797eedf..17109b48d 100644 --- a/lib/vtls/nss.c +++ b/lib/vtls/nss.c @@ -2346,4 +2346,5 @@ const struct Curl_ssl Curl_ssl_nss = { Curl_nss_false_start /* false_start */ }; +const struct Curl_ssl *Curl_ssl = &Curl_ssl_nss; #endif /* USE_NSS */ -- cgit v1.2.3