diff options
author | Anders Bakken <agbakken@gmail.com> | 2015-10-07 12:40:23 -0700 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2015-10-08 02:07:12 -0400 |
commit | da2d3b58052e5dd4bb0902189d7c1952b3036856 (patch) | |
tree | edad37973b756074784906b25ac512d7b212862d /lib | |
parent | 3771da335b92874e8c97bda7a254b5a5e96a51c5 (diff) |
des: Fix header conditional for Curl_des_set_odd_parity
Follow up to 613e502.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/curl_des.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |