]> granicus.if.org Git - curl/commitdiff
vtls: fix missing commas
authorDaniel Stenberg <daniel@haxx.se>
Fri, 4 May 2018 21:02:36 +0000 (23:02 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 4 May 2018 21:02:57 +0000 (23:02 +0200)
follow-up to e66cca046cef

lib/vtls/cyassl.c
lib/vtls/gskit.c
lib/vtls/schannel.c

index b127dcca85f419920c2a4d68c7b39d4dbf1e7f76..20ce460e8375152b0012663f54ef77b09eddda88 100644 (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),
 
index a770565c198d7c5339a9b087d17fa3129f35d987..b0856cdf449e1b0dc877fa30b9c0fb890c9c3a79 100644 (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),
 
index 548f4e316a12d3b8b1a625f65f2f0a79c5b3f568..2cfd5c19f5a9b79c537479111e4cfe2dc0a74ba0 100644 (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),