diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2017-09-22 15:47:14 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2017-09-23 13:58:14 -0400 |
commit | 953b5c4e2602711c031a4f6cd024051a72329015 (patch) | |
tree | fdecee4fc5d80a599bdbca662cd83cfa0915de22 /lib/http_ntlm.c | |
parent | afbdc96638a769d9bee8579d8b70f54537f5e891 (diff) | |
download | curl-953b5c4e2602711c031a4f6cd024051a72329015.tar.gz |
ntlm: move NTLM_NEEDS_NSS_INIT define into core NTLM header
.. and include the core NTLM header in all NTLM-related source files.
Follow up to 6f86022. Since then http_ntlm checks NTLM_NEEDS_NSS_INIT
but did not include vtls.h where it was defined.
Closes https://github.com/curl/curl/pull/1911
Diffstat (limited to 'lib/http_ntlm.c')
-rw-r--r-- | lib/http_ntlm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index 28e638e69..0f1edcf65 100644 --- a/lib/http_ntlm.c +++ b/lib/http_ntlm.c @@ -37,6 +37,7 @@ #include "sendf.h" #include "strcase.h" #include "http_ntlm.h" +#include "curl_ntlm_core.h" #include "curl_ntlm_wb.h" #include "vauth/vauth.h" #include "url.h" |