diff options
author | Daniel Stenberg <daniel@haxx.se> | 2022-10-30 17:38:16 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2022-10-30 22:31:29 +0100 |
commit | 52cc4a85fd7e5265ba8ff0f08adf4858f6773a11 (patch) | |
tree | 42840cae8269d796f753587dcd493d36f7384dab /lib/urldata.h | |
parent | b8c302dcbae53a79a85b42b9acfabd392a8a530e (diff) | |
download | curl-52cc4a85fd7e5265ba8ff0f08adf4858f6773a11.tar.gz |
style: use space after comment start and before comment end
/* like this */
/*not this*/
checksrc is updated accordingly
Closes #9828
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index f5bd5a3e9..fc7985176 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -264,7 +264,7 @@ struct ssl_connect_data { struct ssl_primary_config { long version; /* what version the client wants to use */ - long version_max; /* max supported version the client wants to use*/ + long version_max; /* max supported version the client wants to use */ char *CApath; /* certificate dir (doesn't work on windows) */ char *CAfile; /* certificate to verify peer against */ char *issuercert; /* optional issuer certificate filename */ @@ -301,7 +301,7 @@ struct ssl_config_data { char *key_passwd; /* plain text private key password */ BIT(certinfo); /* gather lots of certificate info */ BIT(falsestart); - BIT(enable_beast); /* allow this flaw for interoperability's sake*/ + BIT(enable_beast); /* allow this flaw for interoperability's sake */ BIT(no_revoke); /* disable SSL certificate revocation checks */ BIT(no_partialchain); /* don't accept partial certificate chains */ BIT(revoke_best_effort); /* ignore SSL revocation offline/missing revocation |