]> granicus.if.org Git - curl/commitdiff
config-win32.h: Don't enable Windows Crypt API if using OpenSSL
authorSteve Holme <steve_holme@hotmail.com>
Fri, 12 Dec 2014 19:46:56 +0000 (19:46 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Fri, 12 Dec 2014 19:57:00 +0000 (19:57 +0000)
As the OpenSSL and NSS Crypto engines are prefered by the core NTLM
routines, to the Windows Crypt API, don't define USE_WIN32_CRYPT
automatically when either OpenSSL or NSS are in use - doing so would
disable NTLM2Session responses in NTLM type-3 messages.

lib/config-win32.h

index ba3e7a708be99686c2e17ebe276b0d88378d6b8f..95f1595becbf4db14e28f486a787ebefeab1bc1b 100644 (file)
 #endif
 
 /* Define to use the Windows crypto library. */
+#if !defined(USE_SSLEAY) && !defined(USE_NSS)
 #define USE_WIN32_CRYPTO
+#endif
 
 /* ---------------------------------------------------------------- */
 /*                       ADDITIONAL DEFINITIONS                     */