diff options
author | Yang Tse <yangsita@gmail.com> | 2011-09-22 00:24:02 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-09-22 00:24:02 +0200 |
commit | 01c172f5e8c78b781397003e22fc462a503d2c24 (patch) | |
tree | 7c033995d5c98d16f1ad9b4f8861288deccf30bc /lib/version.c | |
parent | e9cf4cb79182de38d240e54954f0b2805aeec177 (diff) | |
download | curl-01c172f5e8c78b781397003e22fc462a503d2c24.tar.gz |
NTLM_WB: fix disabling of NTLM_WB when NTLM is disabled
Diffstat (limited to 'lib/version.c')
-rw-r--r-- | lib/version.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/version.c b/lib/version.c index fdf758f9a..c56ad3962 100644 --- a/lib/version.c +++ b/lib/version.c @@ -240,7 +240,7 @@ static curl_version_info_data version_info = { #ifdef USE_NTLM | CURL_VERSION_NTLM #endif -#ifdef NTLM_WB_ENABLED +#if defined(USE_NTLM) && defined(NTLM_WB_ENABLED) | CURL_VERSION_NTLM_WB #endif #ifdef USE_WINDOWS_SSPI |