diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-07-27 21:44:43 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-07-27 21:44:43 +0000 |
commit | 463c0f7096f7a0e56929a8e1b4fb3c38e164ce13 (patch) | |
tree | 95d6a6639bf2a78dc47acf845e14c7c8e5916602 /lib/http_ntlm.h | |
parent | e49a7e361c91771fc8650ff97ad97fc0a334ecc8 (diff) | |
download | curl-463c0f7096f7a0e56929a8e1b4fb3c38e164ce13.tar.gz |
disabling HTTP should also nullify this function call
Diffstat (limited to 'lib/http_ntlm.h')
-rw-r--r-- | lib/http_ntlm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/http_ntlm.h b/lib/http_ntlm.h index a2e1fc307..c4e669ba1 100644 --- a/lib/http_ntlm.h +++ b/lib/http_ntlm.h @@ -39,7 +39,8 @@ CURLntlm Curl_input_ntlm(struct connectdata *conn, bool proxy, char *header); CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy); void Curl_ntlm_cleanup(struct connectdata *conn); -#if !defined(USE_SSLEAY) && !defined(USE_WINDOWS_SSPI) +#if (!defined(USE_SSLEAY) && !defined(USE_WINDOWS_SSPI)) || \ + defined(CURL_DISABLE_HTTP) #define Curl_ntlm_cleanup(x) #endif |