mirror of
https://github.com/curl/curl.git
synced 2026-08-26 12:23:34 +03:00
md4: only build when used
Its only usage in curl_ntlm_core.c is guarded by `USE_CURL_NTLM_CORE`, so let's use this here too. Ref: https://github.com/curl/curl/issues/11098 Closes https://github.com/curl/curl/pull/11102
This commit is contained in:
parent
de2542f3f2
commit
e587598534
2 changed files with 3 additions and 3 deletions
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include "curl_setup.h"
|
||||
|
||||
#if !defined(CURL_DISABLE_CRYPTO_AUTH)
|
||||
#if defined(USE_CURL_NTLM_CORE)
|
||||
|
||||
#include <string.h>
|
||||
|
||||
|
|
@ -504,4 +504,4 @@ void Curl_md4it(unsigned char *output, const unsigned char *input,
|
|||
MD4_Final(output, &ctx);
|
||||
}
|
||||
|
||||
#endif /* CURL_DISABLE_CRYPTO_AUTH */
|
||||
#endif /* USE_CURL_NTLM_CORE */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue