Commit 463c0f70 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

disabling HTTP should also nullify this function call

parent e49a7e36
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -39,7 +39,8 @@ CURLntlm Curl_input_ntlm(struct connectdata *conn, bool proxy, char *header);
CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy);
CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy);


void Curl_ntlm_cleanup(struct connectdata *conn);
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)
#define Curl_ntlm_cleanup(x)
#endif
#endif