summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Monnerat <patrick@monnerat.net>2021-04-03 01:22:28 +0200
committerDaniel Stenberg <daniel@haxx.se>2021-04-09 09:40:36 +0200
commit10514d0076ef4db1d6d77bb61d54a3a2baa67baf (patch)
tree1e7d5df30339360b5e9a14c3e63f69cbaa034c2c
parentc502b47f1f2cf4668dd627203c62b978868df632 (diff)
downloadcurl-10514d0076ef4db1d6d77bb61d54a3a2baa67baf.tar.gz
curl_ntlm_core.h: simplify conditionals for USE_NTLM2SESSION
... as !defined(CURL_DISABLE_CRYPTO_AUTH) is a prerequisite for the whole NTLM. Closes #6849
-rw-r--r--lib/curl_ntlm_core.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/curl_ntlm_core.h b/lib/curl_ntlm_core.h
index 75fcdeb16..a5e02b7f8 100644
--- a/lib/curl_ntlm_core.h
+++ b/lib/curl_ntlm_core.h
@@ -47,9 +47,8 @@
#define USE_NTRESPONSES
/* Define USE_NTLM2SESSION in order to make the type-3 message include the
- NTLM2Session response message, requires USE_NTRESPONSES defined to 1 and
- MD5 support */
-#if defined(USE_NTRESPONSES) && !defined(CURL_DISABLE_CRYPTO_AUTH)
+ NTLM2Session response message, requires USE_NTRESPONSES defined to 1 */
+#if defined(USE_NTRESPONSES)
#define USE_NTLM2SESSION
#endif