aboutsummaryrefslogtreecommitdiff
path: root/lib/version.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2011-09-22 00:24:02 +0200
committerYang Tse <yangsita@gmail.com>2011-09-22 00:24:02 +0200
commit01c172f5e8c78b781397003e22fc462a503d2c24 (patch)
tree7c033995d5c98d16f1ad9b4f8861288deccf30bc /lib/version.c
parente9cf4cb79182de38d240e54954f0b2805aeec177 (diff)
NTLM_WB: fix disabling of NTLM_WB when NTLM is disabled
Diffstat (limited to 'lib/version.c')
-rw-r--r--lib/version.c2
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