summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Bakken <agbakken@gmail.com>2015-10-07 12:40:23 -0700
committerJay Satiro <raysatiro@yahoo.com>2015-10-08 02:07:12 -0400
commitda2d3b58052e5dd4bb0902189d7c1952b3036856 (patch)
treeedad37973b756074784906b25ac512d7b212862d
parent3771da335b92874e8c97bda7a254b5a5e96a51c5 (diff)
downloadcurl-da2d3b58052e5dd4bb0902189d7c1952b3036856.tar.gz
des: Fix header conditional for Curl_des_set_odd_parity
Follow up to 613e502.
-rw-r--r--lib/curl_des.h2
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);