From: Marcel Raad Date: Thu, 11 May 2023 07:06:33 +0000 (+0200) Subject: md4: only build when used X-Git-Tag: curl-8_1_0~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e587598534c0f35436d11ae3f1cf92f5729c2a9e;p=thirdparty%2Fcurl.git 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 --- diff --git a/lib/md4.c b/lib/md4.c index 318e9da6ae..d575d81d2b 100644 --- a/lib/md4.c +++ b/lib/md4.c @@ -24,7 +24,7 @@ #include "curl_setup.h" -#if !defined(CURL_DISABLE_CRYPTO_AUTH) +#if defined(USE_CURL_NTLM_CORE) #include @@ -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 */ diff --git a/tests/unit/unit1611.c b/tests/unit/unit1611.c index 16634234de..0062ac6c37 100644 --- a/tests/unit/unit1611.c +++ b/tests/unit/unit1611.c @@ -37,7 +37,7 @@ static void unit_stop(void) UNITTEST_START -#ifndef CURL_DISABLE_CRYPTO_AUTH +#ifdef USE_CURL_NTLM_CORE const char string1[] = "1"; const char string2[] = "hello-you-fool"; unsigned char output[MD4_DIGEST_LENGTH];