summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Schmitz <support@monkeybreadsoftware.de>2019-03-26 09:53:03 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-03-26 16:32:14 +0100
commit9130ead9fcabdb6b8fbdb37c0b38be2d326adb00 (patch)
treea1629c099092ede0fe125285f457d668e926f1f7
parentf5bc578f4cdfdc6c708211dfc2962a0e9d79352d (diff)
downloadcurl-9130ead9fcabdb6b8fbdb37c0b38be2d326adb00.tar.gz
ntlm: remove USE_WIN32_CRYPTO check to get USE_NTLM2SESSION set
Closes #3704
-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 07ef5deae..9afb514bb 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) && !defined(USE_WIN32_CRYPTO)
+#if defined(USE_NTRESPONSES)
#define USE_NTLM2SESSION
#endif