diff options
author | Yang Tse <yangsita@gmail.com> | 2011-08-15 01:34:34 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-08-15 01:34:34 +0200 |
commit | b9d5e72adc88096f61c60d04388cb68a1e500293 (patch) | |
tree | 302df70ab17722598e8a1ad793bee7f3ccc4cdb6 /lib/http_ntlm.c | |
parent | 6a7ce5cc762cfb9eb8bffeddc95c02aac1f7ead2 (diff) | |
download | curl-b9d5e72adc88096f61c60d04388cb68a1e500293.tar.gz |
http NTLM: reinstate "nssg.h" "curl_sspi.h" header inclusions
Diffstat (limited to 'lib/http_ntlm.c')
-rw-r--r-- | lib/http_ntlm.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index fd9f7009c..ca81a947d 100644 --- a/lib/http_ntlm.c +++ b/lib/http_ntlm.c @@ -62,6 +62,12 @@ #define _MPRINTF_REPLACE /* use our functions only */ #include <curl/mprintf.h> +#if defined(USE_NSS) +#include "nssg.h" +#elif defined(USE_WINDOWS_SSPI) +#include "curl_sspi.h" +#endif + /* The last #include file should be: */ #include "memdebug.h" |