disabling HTTP should also nullify this function call

This commit is contained in:
Daniel Stenberg 2005-07-27 21:44:43 +00:00
parent e49a7e361c
commit 463c0f7096
1 changed files with 2 additions and 1 deletions

View File

@ -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