From da2d3b58052e5dd4bb0902189d7c1952b3036856 Mon Sep 17 00:00:00 2001 From: Anders Bakken Date: Wed, 7 Oct 2015 12:40:23 -0700 Subject: des: Fix header conditional for Curl_des_set_odd_parity Follow up to 613e502. --- lib/curl_des.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/curl_des.h b/lib/curl_des.h index a6e86f861..061e91271 100644 --- a/lib/curl_des.h +++ b/lib/curl_des.h @@ -24,7 +24,7 @@ #include "curl_setup.h" -#if defined(USE_NTLM) && (!defined(USE_OPENSSL) || defined(HAVE_BORINGSSL)) +#if defined(USE_NTLM) && !defined(HAVE_DES_SET_ODD_PARITY) /* Applies odd parity to the given byte array */ void Curl_des_set_odd_parity(unsigned char *bytes, size_t length); -- cgit v1.2.1