summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-03-27 00:19:15 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-03-27 00:19:15 +0100
commitc07fc5e2925ca4807fdffde2746e80b0ede6a8b7 (patch)
tree7bf03f02d084f63f85daabcb1e8cb9b079a1201c
parent9130ead9fcabdb6b8fbdb37c0b38be2d326adb00 (diff)
downloadgnurl-c07fc5e2925ca4807fdffde2746e80b0ede6a8b7.tar.gz
gnurl-c07fc5e2925ca4807fdffde2746e80b0ede6a8b7.tar.bz2
gnurl-c07fc5e2925ca4807fdffde2746e80b0ede6a8b7.zip
Revert "ntlm: remove USE_WIN32_CRYPTO check to get USE_NTLM2SESSION set"
This reverts commit 9130ead9fcabdb6b8fbdb37c0b38be2d326adb00. Fixes #3708
-rw-r--r--lib/curl_ntlm_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_ntlm_core.h b/lib/curl_ntlm_core.h
index 9afb514bb..07ef5deae 100644
--- a/lib/curl_ntlm_core.h
+++ b/lib/curl_ntlm_core.h
@@ -50,7 +50,7 @@
/* Define USE_NTLM2SESSION in order to make the type-3 message include the
NTLM2Session response message, requires USE_NTRESPONSES defined to 1 and a
Crypto engine that we have curl_ssl_md5sum() for. */
-#if defined(USE_NTRESPONSES)
+#if defined(USE_NTRESPONSES) && !defined(USE_WIN32_CRYPTO)
#define USE_NTLM2SESSION
#endif