From: Daniel Stenberg Date: Wed, 27 Jul 2005 21:44:43 +0000 (+0000) Subject: disabling HTTP should also nullify this function call X-Git-Tag: curl-7_14_1~96 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=463c0f7096f7a0e56929a8e1b4fb3c38e164ce13;p=thirdparty%2Fcurl.git disabling HTTP should also nullify this function call --- diff --git a/lib/http_ntlm.h b/lib/http_ntlm.h index a2e1fc307a..c4e669ba17 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