diff options
author | Bill Nagel <wnagel@tycoint.com> | 2014-12-02 13:21:52 -0500 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-12-07 18:32:59 +0000 |
commit | eb88d778e751639d68d932b23a648e591bcc0ba8 (patch) | |
tree | 55280cb7cc81c7010a427f14bbdd6463e581e143 /lib/curl_setup.h | |
parent | 2adf294602a0660cb3d59ac710919bca63fdc33b (diff) |
ntlm: Use Windows Crypt API
Allow the use of the Windows Crypt API for NTLMv1 functions.
Diffstat (limited to 'lib/curl_setup.h')
-rw-r--r-- | lib/curl_setup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_setup.h b/lib/curl_setup.h index 6370e80f5..84c1b41ce 100644 --- a/lib/curl_setup.h +++ b/lib/curl_setup.h @@ -624,7 +624,7 @@ int netware_init(void); #if !defined(CURL_DISABLE_NTLM) && !defined(CURL_DISABLE_CRYPTO_AUTH) #if defined(USE_SSLEAY) || defined(USE_WINDOWS_SSPI) || \ defined(USE_GNUTLS) || defined(USE_NSS) || defined(USE_DARWINSSL) || \ - defined(USE_OS400CRYPTO) + defined(USE_OS400CRYPTO) || defined(USE_WIN32_CRYPTO) #define USE_NTLM #endif #endif |