summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Hoffman-Andrews <github@hoffman-andrews.com>2020-12-07 15:04:42 -0800
committerJay Satiro <raysatiro@yahoo.com>2020-12-07 18:45:47 -0500
commit6d338a87d6d80b1a33965cb8d0e4298805fe4dc4 (patch)
treeba2d6d567821ec225d071ff11b6f127842224e59
parent0611fded460d8c8e198053e7ad084846e1d43574 (diff)
downloadgnurl-6d338a87d6d80b1a33965cb8d0e4298805fe4dc4.tar.gz
gnurl-6d338a87d6d80b1a33965cb8d0e4298805fe4dc4.tar.bz2
gnurl-6d338a87d6d80b1a33965cb8d0e4298805fe4dc4.zip
urldata: restore comment on ssl_connect_data.use
This comment was originally on the `use` field, but was separated from its field in 62a2534. Closes https://github.com/curl/curl/pull/6287
-rw-r--r--lib/urldata.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index f085c093c..4679c9d46 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -205,14 +205,14 @@ struct ssl_backend_data;
/* struct for data related to each SSL connection */
struct ssl_connect_data {
- /* Use ssl encrypted communications TRUE/FALSE, not necessarily using it atm
- but at least asked to or meaning to use it. See 'state' for the exact
- current state of the connection. */
ssl_connection_state state;
ssl_connect_state connecting_state;
#if defined(USE_SSL)
struct ssl_backend_data *backend;
#endif
+ /* Use ssl encrypted communications TRUE/FALSE. The library is not
+ necessarily using ssl at the moment but at least asked to or means to use
+ it. See 'state' for the exact current state of the connection. */
BIT(use);
};