diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-05-04 12:10:39 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-05-04 22:31:19 +0200 |
commit | e66cca046cef20d00fba89260dfa6b4a3997233d (patch) | |
tree | 7bc1d35fa61b022ea481a7e891bcfa5c78b2fe48 /lib/version.c | |
parent | f8d608f38d00a129680f5535ed2f1e60fc226d30 (diff) | |
download | curl-e66cca046cef20d00fba89260dfa6b4a3997233d.tar.gz |
vtls: use unified "supports" bitfield member in backends
... instead of previous separate struct fields, to make it easier to
extend and change individual backends without having to modify them all.
closes #2547
Diffstat (limited to 'lib/version.c')
-rw-r--r-- | lib/version.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/version.c b/lib/version.c index 1752e14e8..5b0d05a15 100644 --- a/lib/version.c +++ b/lib/version.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -399,7 +399,7 @@ curl_version_info_data *curl_version_info(CURLversion stamp) #ifdef USE_SSL Curl_ssl_version(ssl_buffer, sizeof(ssl_buffer)); version_info.ssl_version = ssl_buffer; - if(Curl_ssl->support_https_proxy) + if(Curl_ssl->supports & SSLSUPP_HTTPS_PROXY) version_info.features |= CURL_VERSION_HTTPS_PROXY; else version_info.features &= ~CURL_VERSION_HTTPS_PROXY; |