diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2015-09-10 02:17:33 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2015-09-10 02:17:33 -0400 |
commit | df6a4d3519655b26137a90a440c5a99f4abe7e22 (patch) | |
tree | db693d330e046b37c782c3d54b8587d9309b31e8 /lib/curl_setup.h | |
parent | e30763c72eed43630befccf0018e4801b620d6f3 (diff) |
curl_sspi: fix possibly undefined CRYPT_E_REVOKED
Bug: https://github.com/bagder/curl/pull/411
Reported-by: Viktor Szakats
Diffstat (limited to 'lib/curl_setup.h')
-rw-r--r-- | lib/curl_setup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_setup.h b/lib/curl_setup.h index ab0c13940..a21b96196 100644 --- a/lib/curl_setup.h +++ b/lib/curl_setup.h @@ -249,7 +249,7 @@ # ifdef HAVE_WINSOCK2_H # include <winsock2.h> # ifdef HAVE_WS2TCPIP_H -# include <ws2tcpip.h> +# include <ws2tcpip.h> # endif # else # ifdef HAVE_WINSOCK_H |