vtls: fix missing commas

follow-up to e66cca046c
This commit is contained in:
Daniel Stenberg 2018-05-04 23:02:36 +02:00
parent e66cca046c
commit babd55e25f
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
3 changed files with 3 additions and 3 deletions

View File

@ -997,7 +997,7 @@ const struct Curl_ssl Curl_ssl_cyassl = {
#ifdef KEEP_PEER_CERT
SSLSUPP_PINNEDPUBKEY |
#endif
SSLSUPP_SSL_CTX
SSLSUPP_SSL_CTX,
sizeof(struct ssl_backend_data),

View File

@ -1354,7 +1354,7 @@ const struct Curl_ssl Curl_ssl_gskit = {
{ CURLSSLBACKEND_GSKIT, "gskit" }, /* info */
SSLSUPP_CERTINFO |
SSLSUPP_PINNEDPUBKEY
SSLSUPP_PINNEDPUBKEY,
sizeof(struct ssl_backend_data),

View File

@ -1924,7 +1924,7 @@ const struct Curl_ssl Curl_ssl_schannel = {
{ CURLSSLBACKEND_SCHANNEL, "schannel" }, /* info */
SSLSUPP_CERTINFO |
SSLSUPP_PINNEDPUBKEY
SSLSUPP_PINNEDPUBKEY,
sizeof(struct ssl_backend_data),