1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

urldata: include curl_sspi.h when Windows SSPI is enabled

f77dabe broke builds in Windows using Windows SSPI but not Windows SSL.

Bug: https://github.com/curl/curl/issues/1276
Reported-by: jveazey@users.noreply.github.com
This commit is contained in:
Viktor Szakats 2017-02-21 23:01:37 -05:00 committed by Jay Satiro
parent b259646ea1
commit f4739f639f

View File

@ -136,8 +136,10 @@
#undef realloc #undef realloc
#endif /* USE_AXTLS */ #endif /* USE_AXTLS */
#ifdef USE_SCHANNEL #if defined(USE_SCHANNEL) || defined(USE_WINDOWS_SSPI)
#include "curl_sspi.h" #include "curl_sspi.h"
#endif
#ifdef USE_SCHANNEL
#include <schnlsp.h> #include <schnlsp.h>
#include <schannel.h> #include <schannel.h>
#endif #endif