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
1 changed files with 3 additions and 1 deletions

View File

@ -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