diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-05-04 23:02:36 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-05-04 23:02:57 +0200 |
commit | babd55e25f6d00fc59e8952a9a8b56b6de93fabe (patch) | |
tree | afc5e54617c61d63766d7490dbcabf641a43c20c /lib/vtls/schannel.c | |
parent | e66cca046cef20d00fba89260dfa6b4a3997233d (diff) | |
download | curl-babd55e25f6d00fc59e8952a9a8b56b6de93fabe.tar.gz |
vtls: fix missing commas
follow-up to e66cca046cef
Diffstat (limited to 'lib/vtls/schannel.c')
-rw-r--r-- | lib/vtls/schannel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/schannel.c b/lib/vtls/schannel.c index 548f4e316..2cfd5c19f 100644 --- a/lib/vtls/schannel.c +++ b/lib/vtls/schannel.c @@ -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), |