Commit f4739f63 authored by Viktor Szakats's avatar Viktor Szakats Committed by Jay Satiro
Browse files

urldata: include curl_sspi.h when Windows SSPI is enabled

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

Bug: https://github.com/curl/curl/issues/1276


Reported-by: default avatar <jveazey@users.noreply.github.com>
parent b259646e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -136,8 +136,10 @@
#undef realloc
#endif /* USE_AXTLS */

#ifdef USE_SCHANNEL
#if defined(USE_SCHANNEL) || defined(USE_WINDOWS_SSPI)
#include "curl_sspi.h"
#endif
#ifdef USE_SCHANNEL
#include <schnlsp.h>
#include <schannel.h>
#endif